golang-exercises/query-cpu/main.go

12 lines
99 B
Go
Raw Permalink Normal View History

2024-03-23 12:06:31 +01:00
/*
Copyright © 2024 Raul
*/
2024-03-21 22:03:27 +01:00
package main
2024-03-23 12:06:31 +01:00
import "query-cpu/cmd"
2024-03-21 22:03:27 +01:00
func main() {
2024-03-23 12:06:31 +01:00
cmd.Execute()
2024-03-21 22:03:27 +01:00
}