mirror of
https://github.com/bcicen/ctop.git
synced 2025-11-10 05:05:40 +01:00
14 lines
169 B
Go
14 lines
169 B
Go
|
|
package main
|
||
|
|
|
||
|
|
type Config struct {
|
||
|
|
sortField string
|
||
|
|
}
|
||
|
|
|
||
|
|
var DefaultConfig = NewDefaultConfig()
|
||
|
|
|
||
|
|
func NewDefaultConfig() Config {
|
||
|
|
return Config{
|
||
|
|
sortField: "id",
|
||
|
|
}
|
||
|
|
}
|