Files
ctop/config.go

14 lines
169 B
Go
Raw Normal View History

2017-01-03 17:37:09 +00:00
package main
type Config struct {
sortField string
}
var DefaultConfig = NewDefaultConfig()
func NewDefaultConfig() Config {
return Config{
sortField: "id",
}
}