Use go modules
This commit is contained in:
parent
99862b6daa
commit
9dc1f401b7
11 changed files with 82 additions and 70 deletions
15
go.mod
Normal file
15
go.mod
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
module srs.epita.fr/fic-server
|
||||
|
||||
go 1.9
|
||||
|
||||
require (
|
||||
github.com/BurntSushi/toml v0.3.1
|
||||
github.com/fsnotify/fsnotify v1.4.9 // indirect
|
||||
github.com/go-sql-driver/mysql v1.6.0
|
||||
github.com/julienschmidt/httprouter v1.3.0
|
||||
github.com/russross/blackfriday/v2 v2.1.0
|
||||
github.com/studio-b12/gowebdav v0.0.0-20210427212133-86f8378cf140
|
||||
golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a
|
||||
golang.org/x/image v0.0.0-20210504121937-7319ad40d33e
|
||||
gopkg.in/fsnotify.v1 v1.4.7
|
||||
)
|
||||
Reference in a new issue