Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
LordRalex committed Jul 8, 2023
2 parents 85e28ba + 68a91e8 commit 86e0426
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
###
# Builder to compile our golang code
###
FROM golang:1.18-alpine AS builder
FROM golang:1.19-alpine AS builder

ARG tags="modules.all,databases.all"

Expand Down
27 changes: 20 additions & 7 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,26 +1,39 @@
module github.com/lordralex/absol

go 1.15
go 1.19

require (
github.com/bwmarrin/discordgo v0.24.0
github.com/iverly/go-mcping v1.0.0
github.com/spf13/cast v1.3.1
github.com/spf13/viper v1.7.1
golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5
gorm.io/driver/mysql v1.0.3
gorm.io/gorm v1.20.9
)

require (
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/go-sql-driver/mysql v1.5.0 // indirect
github.com/golang/protobuf v1.4.3 // indirect
github.com/iverly/go-mcping v1.0.0
github.com/gorilla/websocket v1.4.2 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.1 // indirect
github.com/jmoiron/jsonq v0.0.0-20150511023944-e874b168d07e // indirect
github.com/magiconair/properties v1.8.4 // indirect
github.com/mitchellh/mapstructure v1.4.0 // indirect
github.com/pelletier/go-toml v1.8.1 // indirect
github.com/spf13/afero v1.5.1 // indirect
github.com/spf13/cast v1.3.1
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/spf13/viper v1.7.1
golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5
github.com/subosito/gotenv v1.2.0 // indirect
golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b // indirect
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 // indirect
golang.org/x/sys v0.0.0-20201223074533-0d417f636930 // indirect
golang.org/x/text v0.3.4 // indirect
google.golang.org/appengine v1.6.7 // indirect; indirdeect
google.golang.org/protobuf v1.25.0 // indirect
gopkg.in/ini.v1 v1.62.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gorm.io/driver/mysql v1.0.3
gorm.io/gorm v1.20.9
)

0 comments on commit 86e0426

Please sign in to comment.