1
0
mirror of https://github.com/astaxie/beego.git synced 2025-07-06 14:00:19 +00:00

gofmt code

This commit is contained in:
傅小黑
2013-12-24 21:59:00 +08:00
parent 0183608a59
commit a1f6039d82
5 changed files with 10 additions and 11 deletions

View File

@ -7,7 +7,7 @@ import (
// ConfigContainer defines how to get and set value from configuration raw data.
type ConfigContainer interface {
Set(key, val string) error // support section::key type in given key when using ini type.
String(key string) string // support section::key type in key string when using ini and json type; Int,Int64,Bool,Float,DIY are same.
String(key string) string // support section::key type in key string when using ini and json type; Int,Int64,Bool,Float,DIY are same.
Int(key string) (int, error)
Int64(key string) (int64, error)
Bool(key string) (bool, error)