Move module declaration and all internal imports from github.com/Snider/Borg to forge.lthn.ai/Snider/Borg. Also updates Enchantrix dependency path to forge.lthn.ai/Snider/Enchantrix. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
274 B
Go
16 lines
274 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
|
|
"forge.lthn.ai/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)
|
|
}
|
|
}
|