mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 13:20:55 +00:00
gofmt code
This commit is contained in:
parent
0183608a59
commit
a1f6039d82
@ -53,7 +53,7 @@ func (c *JsonConfigContainer) Bool(key string) (bool, error) {
|
|||||||
} else {
|
} else {
|
||||||
return false, errors.New("not exist key:" + key)
|
return false, errors.New("not exist key:" + key)
|
||||||
}
|
}
|
||||||
return false,nil
|
return false, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Int returns the integer value for a given key.
|
// Int returns the integer value for a given key.
|
||||||
@ -68,7 +68,7 @@ func (c *JsonConfigContainer) Int(key string) (int, error) {
|
|||||||
} else {
|
} else {
|
||||||
return 0, errors.New("not exist key:" + key)
|
return 0, errors.New("not exist key:" + key)
|
||||||
}
|
}
|
||||||
return 0,nil
|
return 0, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Int64 returns the int64 value for a given key.
|
// Int64 returns the int64 value for a given key.
|
||||||
@ -83,7 +83,7 @@ func (c *JsonConfigContainer) Int64(key string) (int64, error) {
|
|||||||
} else {
|
} else {
|
||||||
return 0, errors.New("not exist key:" + key)
|
return 0, errors.New("not exist key:" + key)
|
||||||
}
|
}
|
||||||
return 0,nil
|
return 0, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Float returns the float value for a given key.
|
// Float returns the float value for a given key.
|
||||||
@ -98,7 +98,7 @@ func (c *JsonConfigContainer) Float(key string) (float64, error) {
|
|||||||
} else {
|
} else {
|
||||||
return 0.0, errors.New("not exist key:" + key)
|
return 0.0, errors.New("not exist key:" + key)
|
||||||
}
|
}
|
||||||
return 0.0,nil
|
return 0.0, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// String returns the string value for a given key.
|
// String returns the string value for a given key.
|
||||||
@ -132,7 +132,7 @@ func (c *JsonConfigContainer) DIY(key string) (v interface{}, err error) {
|
|||||||
} else {
|
} else {
|
||||||
return nil, errors.New("not exist key")
|
return nil, errors.New("not exist key")
|
||||||
}
|
}
|
||||||
return nil,nil
|
return nil, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// section.key or key
|
// section.key or key
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
package config
|
package config
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
Loading…
Reference in New Issue
Block a user