2022-06-12 22:39:48 +02:00
|
|
|
module github.com/scripthaus-dev/sh2-server
|
|
|
|
|
|
|
|
go 1.17
|
|
|
|
|
|
|
|
require (
|
2022-07-01 19:48:14 +02:00
|
|
|
github.com/golang-migrate/migrate/v4 v4.15.2
|
2022-07-01 02:02:19 +02:00
|
|
|
github.com/google/uuid v1.3.0
|
|
|
|
github.com/gorilla/mux v1.8.0
|
|
|
|
github.com/gorilla/websocket v1.5.0
|
2022-07-01 19:48:14 +02:00
|
|
|
github.com/jmoiron/sqlx v1.3.5
|
|
|
|
github.com/mattn/go-sqlite3 v1.14.14
|
2022-07-01 02:02:19 +02:00
|
|
|
github.com/scripthaus-dev/mshell v0.0.0
|
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/alessio/shellescape v1.4.1 // indirect
|
2022-06-12 22:39:48 +02:00
|
|
|
github.com/creack/pty v1.1.18 // indirect
|
|
|
|
github.com/fsnotify/fsnotify v1.5.4 // indirect
|
2022-07-01 19:48:14 +02:00
|
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
2022-08-11 03:33:32 +02:00
|
|
|
github.com/mattn/go-shellwords v1.0.12 // indirect
|
2022-07-01 19:48:14 +02:00
|
|
|
go.uber.org/atomic v1.7.0 // indirect
|
2022-06-12 22:39:48 +02:00
|
|
|
golang.org/x/sys v0.0.0-20220412211240-33da011f77ad // indirect
|
|
|
|
)
|
|
|
|
|
2022-07-01 02:02:19 +02:00
|
|
|
replace github.com/scripthaus-dev/mshell v0.0.0 => /Users/mike/work/gopath/src/github.com/scripthaus-dev/mshell/
|