mirror of
https://github.com/bcicen/ctop.git
synced 2025-12-06 15:16:41 +08: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",
|
|
}
|
|
}
|