chore: remove yaml config option

This commit is contained in:
Hayden 2022-10-12 13:03:42 -08:00 committed by GitHub
parent 92368dabf8
commit 14f1b93d38
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 26 deletions

View file

@ -36,12 +36,7 @@ var (
// @name Authorization
// @description "Type 'Bearer TOKEN' to correctly set the API Key"
func main() {
path := ""
if len(os.Args) > 1 {
path = os.Args[1]
}
cfg, err := config.NewConfig(path)
cfg, err := config.New()
if err != nil {
panic(err)
}