Borg/examples/run_matrix_programmatically/main.go

19 lines
312 B
Go
Raw Permalink Normal View History

package main
import (
"log"
"github.com/Snider/Borg/pkg/tim"
)
func main() {
log.Println("Executing TIM with Borg...")
// Execute the TIM using the Borg package.
if err := tim.Run("programmatic.tim"); err != nil {
log.Fatalf("Failed to run TIM: %v", err)
}
log.Println("TIM execution finished.")
}