38 lines
720 B
Go
38 lines
720 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"io/ioutil"
|
|
"os"
|
|
|
|
"github.com/BurntSushi/toml"
|
|
)
|
|
|
|
type Config struct {
|
|
BotToken string `toml:"bot_token"`
|
|
ClientId int `toml:"client_id"`
|
|
ClientSecret string `toml:"client_secret"`
|
|
Repos string `toml:"repos"`
|
|
}
|
|
|
|
func ReadConfig(path string) (config Config, err error) {
|
|
file, err := os.Open(path)
|
|
if err != nil {
|
|
err = fmt.Errorf("couldn't open file %s: %w", path, err)
|
|
return
|
|
}
|
|
|
|
data, err := ioutil.ReadAll(file)
|
|
if err != nil {
|
|
err = fmt.Errorf("couldn't read data from %s: %w", path, err)
|
|
return
|
|
}
|
|
|
|
err = toml.Unmarshal(data, &config)
|
|
if err != nil {
|
|
err = fmt.Errorf("couldn't parse config data from %s: %w", path, err)
|
|
return
|
|
}
|
|
|
|
return
|
|
}
|