Skip to content

Commit

Permalink
fmt code
Browse files Browse the repository at this point in the history
  • Loading branch information
zouyx committed Jul 9, 2020
1 parent 5088150 commit c3c1912
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/repository.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ func (c *Config) GetIntSliceValue(key string) []int {
}

//GetSliceValue 获取配置值([]interface)
func (c *Config) GetSliceValue(key string) []interface{}{
func (c *Config) GetSliceValue(key string) []interface{} {
value := c.getConfigValue(key)
if value == nil {
return []interface{}{}
Expand Down

0 comments on commit c3c1912

Please sign in to comment.