Add TOML Support (#98)

This commit is contained in:
秋のかえで 2020-12-25 03:11:32 +08:00 committed by GitHub
parent 09f9d03fb6
commit f073456ac0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 96 additions and 0 deletions

View file

@ -154,6 +154,8 @@ func getConfigFormat() string {
switch strings.ToLower(*format) {
case "pb", "protobuf":
return "protobuf"
case "toml":
return "toml"
default:
return "json"
}