diff options
author | Keuin <[email protected]> | 2022-09-08 00:31:26 +0800 |
---|---|---|
committer | Keuin <[email protected]> | 2022-09-08 00:31:26 +0800 |
commit | a720c2c16b442b668db465fbbc70740cfc7ddee4 (patch) | |
tree | aac1ba37e4a19c3e9c34f70e9297b0a9e3803db6 /go.mod | |
parent | d00c97e9dbfb59672ced042af8a6e849efab98cc (diff) |
Load config from file or cli.
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 22 |
1 files changed, 16 insertions, 6 deletions
@@ -3,19 +3,29 @@ module bilibili-livestream-archiver go 1.18 require ( + github.com/akamensky/argparse v1.4.0 github.com/andybalholm/brotli v1.0.4 github.com/lunixbochs/struc v0.0.0-20200707160740-784aaebc1d40 + github.com/spf13/viper v1.13.0 nhooyr.io/websocket v1.8.7 ) require ( - github.com/golang/protobuf v1.5.2 // indirect - github.com/google/go-cmp v0.5.8 // indirect - github.com/json-iterator/go v1.1.12 // indirect + github.com/fsnotify/fsnotify v1.5.4 // indirect + github.com/hashicorp/hcl v1.0.0 // indirect github.com/klauspost/compress v1.10.3 // indirect - github.com/mattn/go-isatty v0.0.14 // indirect - github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect + github.com/magiconair/properties v1.8.6 // indirect + github.com/mitchellh/mapstructure v1.5.0 // indirect + github.com/pelletier/go-toml v1.9.5 // indirect + github.com/pelletier/go-toml/v2 v2.0.5 // indirect + github.com/spf13/afero v1.8.2 // indirect + github.com/spf13/cast v1.5.0 // indirect + github.com/spf13/jwalterweatherman v1.1.0 // indirect + github.com/spf13/pflag v1.0.5 // indirect + github.com/subosito/gotenv v1.4.1 // indirect golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect - google.golang.org/protobuf v1.28.0 // indirect + golang.org/x/text v0.3.7 // indirect + gopkg.in/ini.v1 v1.67.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect + gopkg.in/yaml.v3 v3.0.1 // indirect ) |