1
0
Fork 0
mirror of https://github.com/MedzikUser/go-cdn synced 2024-08-15 03:19:36 +00:00
go-cdn/init.go
Medzik c77de68966 Simple Changes
- Added github workflows and dependabot
- Added goreleaser
- The Automatic Update system has been changed
- Changed DB connect from init to Connect()
2021-07-15 10:47:44 +02:00

24 lines
340 B
Go

package main
import (
"github.com/jpillora/opts"
"gitlab.com/gaming0skar123/go/cdn/update"
)
type CMDOptions struct {
Update bool `opts:"help=automatic updates"`
}
func init() {
cmd := CMDOptions{
Update: true,
}
opts.Parse(&cmd)
if cmd.Update {
go update.CheckUpdates()
} else {
log.Warn("Auto Update -> Disabled")
}
}