42 lines
1.3 KiB
Modula-2
42 lines
1.3 KiB
Modula-2
module guichet
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
github.com/go-ldap/ldap/v3 v3.4.5
|
|
github.com/google/uuid v1.3.1
|
|
github.com/gorilla/mux v1.8.0
|
|
github.com/gorilla/sessions v1.2.1
|
|
github.com/jsimonetti/pwscheme v0.0.0-20220922140336-67a4d090f150
|
|
github.com/minio/minio-go/v7 v7.0.63
|
|
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646
|
|
golang.org/x/crypto v0.12.0
|
|
)
|
|
|
|
require (
|
|
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/go-asn1-ber/asn1-ber v1.5.4 // indirect
|
|
github.com/gorilla/securecookie v1.1.1 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/klauspost/compress v1.16.7 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
|
|
github.com/minio/md5-simd v1.1.2 // indirect
|
|
github.com/minio/sha256-simd v1.0.1 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/rs/xid v1.5.0 // indirect
|
|
github.com/sirupsen/logrus v1.9.3 // indirect
|
|
golang.org/x/net v0.14.0 // indirect
|
|
golang.org/x/sys v0.11.0 // indirect
|
|
golang.org/x/text v0.12.0 // indirect
|
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
|
)
|
|
|
|
replace guichet/views => ./views
|
|
|
|
replace guichet/utils => ./utils
|
|
|
|
replace guichet/models => ./models
|
|
|
|
replace guichet/controllers => ./utils/controllers
|