Skip to content

Commit

Permalink
new configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
cybellereaper committed Aug 1, 2023
1 parent 8868600 commit ecd91be
Show file tree
Hide file tree
Showing 4 changed files with 564 additions and 83 deletions.
21 changes: 16 additions & 5 deletions config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
{
"FilePath": "C:\\Users\\admin\\AppData\\Roaming\\Wizard101\\Bin",
"AccountsData": [
["username", "password", "0", "0"]
]
}
"filePath": "C:\\Path\\To\\Wizard101\\Bin",
"accountsData": [
{
"username": "user1",
"password": "pass1",
"xPos": 100,
"yPos": 200
},
{
"username": "user2",
"password": "pass2",
"xPos": 300,
"yPos": 400
}
]
}
20 changes: 19 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,31 @@ module github.com/astridalia/wizquicklauncher

go 1.20

require github.com/urfave/cli v1.22.14
require (
github.com/spf13/viper v1.16.0
github.com/urfave/cli v1.22.14
github.com/urfave/cli/v2 v2.25.7
)

require (
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pelletier/go-toml/v2 v2.0.9 // indirect
github.com/spf13/afero v1.9.5 // indirect
github.com/spf13/cast v1.5.1 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/subosito/gotenv v1.4.2 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
go.uber.org/atomic v1.11.0 // indirect
go.uber.org/dig v1.17.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.24.0 // indirect
golang.org/x/text v0.11.0 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)

require (
Expand Down
Loading

0 comments on commit ecd91be

Please sign in to comment.