mirror of
https://github.com/bcicen/ctop.git
synced 2024-08-30 18:23:19 +00:00
16 lines
125 B
Go
16 lines
125 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
g := NewGrid()
|
|
for {
|
|
exit := Display(g)
|
|
if exit {
|
|
os.Exit(0)
|
|
}
|
|
}
|
|
}
|