a877aed45f
Change-Id: I16cd7730c1e0732253ac52f51010f6b813295aa7
24 lines
333 B
Go
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)
|
|
}
|
|
}
|