Move Go module from github.com/Snider/Core to github.com/host-uk/core to match the new repository location under the host-uk organization. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
133 B
Go
12 lines
133 B
Go
package main
|
|
|
|
import (
|
|
"github.com/host-uk/core/cmd/core/cmd"
|
|
)
|
|
|
|
func main() {
|
|
err := cmd.Execute()
|
|
if err != nil {
|
|
return
|
|
}
|
|
}
|