Files
fnx_web/go.mod

27 lines
1.1 KiB
Modula-2
Raw Normal View History

2020-07-29 17:27:36 +02:00
module fornaxian.tech/pixeldrain_web
2019-12-17 19:28:30 +01:00
2021-03-10 20:13:32 +01:00
go 1.16
2020-06-07 21:12:48 +02:00
replace (
2020-07-29 17:27:36 +02:00
fornaxian.tech/pd_database => ../pd_database
2021-03-10 20:13:32 +01:00
fornaxian.tech/pixeldrain_api_client => ../pixeldrain_api_client
2020-07-29 17:27:36 +02:00
fornaxian.tech/pixeldrain_server/api => ../pixeldrain_server/api
2020-08-11 19:57:19 +02:00
fornaxian.tech/pixeldrain_server/database => ../pixeldrain_server/database
2020-07-30 22:49:45 +02:00
fornaxian.tech/pixeldrain_server/pixelstore => ../pixeldrain_server/pixelstore
2020-07-30 22:47:40 +02:00
fornaxian.tech/pixeldrain_server/util => ../pixeldrain_server/util
2021-03-10 20:13:32 +01:00
github.com/gocql/gocql => github.com/scylladb/gocql v1.5.0
2020-06-07 21:12:48 +02:00
)
2019-12-17 19:28:30 +01:00
require (
2021-03-10 20:13:32 +01:00
fornaxian.tech/pixeldrain_api_client v0.0.0-00010101000000-000000000000
2020-07-30 22:49:45 +02:00
fornaxian.tech/pixeldrain_server/util v0.0.0-00010101000000-000000000000
2021-03-10 20:13:32 +01:00
github.com/BurntSushi/toml v0.3.1 // indirect
2019-12-17 19:28:30 +01:00
github.com/Fornaxian/config v0.0.0-20180915150834-ac41cf746a70
github.com/Fornaxian/log v0.0.0-20190617093801-1c7ce9a7c9b3
2020-02-04 19:37:46 +01:00
github.com/Fornaxian/pd_mime_type v0.0.0-20200204165508-2815edf3a145
2021-03-08 15:30:05 +01:00
github.com/google/uuid v1.2.0
2019-12-17 19:28:30 +01:00
github.com/julienschmidt/httprouter v1.3.0
2020-12-15 16:25:20 +01:00
github.com/microcosm-cc/bluemonday v1.0.4
github.com/russross/blackfriday/v2 v2.1.0
2019-12-17 19:28:30 +01:00
)