mirror of
https://github.com/Forceu/Gokapi.git
synced 2026-01-16 22:09:32 -06:00
* Initial commit websetup * Added writing cloudstorage credentials * Clean up old configuration generation * Added Oauth2 OpenID Connect support * Bugfixes and fixed tests * Refactoring * Refactoring, added first tests * Added documentation * Refactoring, updated docs * Added tests * Added option to reshow setup for reconfiguring Gokapi instance * Added docs and tests
30 lines
1006 B
Modula-2
30 lines
1006 B
Modula-2
module Gokapi
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/aws/aws-sdk-go v1.42.22
|
|
github.com/johannesboyne/gofakes3 v0.0.0-20210415062230-4b6b67a85d38
|
|
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
|
|
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
)
|
|
|
|
require (
|
|
github.com/golang/protobuf v1.4.2 // indirect
|
|
github.com/jmespath/go-jmespath v0.4.0 // indirect
|
|
github.com/ryszard/goskiplist v0.0.0-20150312221310-2dfbae5fcf46 // indirect
|
|
github.com/shabbyrobe/gocovmerge v0.0.0-20180507124511-f6ea450bfb63 // indirect
|
|
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
|
|
golang.org/x/net v0.0.0-20210614182718-04defd469f4e // indirect
|
|
golang.org/x/tools v0.0.0-20190328211700-ab21143f2384 // indirect
|
|
google.golang.org/appengine v1.6.6 // indirect
|
|
google.golang.org/protobuf v1.23.0 // indirect
|
|
gopkg.in/square/go-jose.v2 v2.5.1 // indirect
|
|
)
|
|
|
|
require (
|
|
github.com/coreos/go-oidc/v3 v3.1.0
|
|
golang.org/x/sys v0.0.0-20211210111614-af8b64212486 // indirect
|
|
)
|