-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoffline.go
More file actions
29 lines (28 loc) · 1.1 KB
/
offline.go
File metadata and controls
29 lines (28 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package main
import (
_ "github.com/felixge/fgprof" // indirect
_ "github.com/fsnotify/fsnotify"
_ "github.com/google/uuid"
_ "github.com/hashicorp/hcl" // indirect
_ "github.com/inconshreveable/mousetrap" // indirect
_ "github.com/magiconair/properties" // indirect
_ "github.com/mitchellh/mapstructure" // indirect
_ "github.com/pelletier/go-toml/v2" // indirect
_ "github.com/pkg/profile"
_ "github.com/sagikazarmark/locafero" // indirect
_ "github.com/sagikazarmark/slog-shim" // indirect
_ "github.com/sirupsen/logrus"
_ "github.com/sourcegraph/conc" // indirect
_ "github.com/spf13/afero" // indirect
_ "github.com/spf13/cast" // indirect
_ "github.com/spf13/cobra" // indirect
_ "github.com/spf13/pflag" // indirect
_ "github.com/spf13/viper" // indirect
_ "github.com/subosito/gotenv" // indirect
_ "go.uber.org/atomic" // indirect
_ "go.uber.org/multierr" // indirect
_ "golang.org/x/text" // indirect
_ "gopkg.in/ini.v1" // indirect
_ "gopkg.in/natefinch/lumberjack.v2"
_ "gopkg.in/yaml.v3" // indirect
)