removed unnecessary import

master
Alex 2021-06-12 13:35:35 +02:00
parent 8c60b0dea5
commit 87f6434fcd
1 changed files with 0 additions and 5 deletions

View File

@ -2,7 +2,6 @@ package config
import (
"github.com/BurntSushi/toml"
_ "github.com/go-sql-driver/mysql"
)
var Cfg Config
@ -47,7 +46,3 @@ type settings struct {
func LoadConfig() {
toml.DecodeFile("./config.toml", &Cfg)
}
func GetConfig() Config {
return Cfg
}