use-case-and-architecture/ai_computing_force_scheduling/knets_cmd/main.go
Weisen Pan a877aed45f AI-based CFN Traffic Control and Computer Force Scheduling
Change-Id: I16cd7730c1e0732253ac52f51010f6b813295aa7
2023-11-03 00:09:19 -07:00

24 lines
333 B
Go

package main
// Author: Weisen Pan
// Date: 2023-10-24
import (
"fmt"
"os"
"knets/knets_cmd/simon"
)
func main() {
// Create a new Simon command instance.
cmd := simon.NewSimonCommand()
// Execute the Simon command.
if err := cmd.Execute(); err != nil {
fmt.Printf("Error starting: %s", err.Error())
os.Exit(1)
}
}