14 lines
270 B
Go
14 lines
270 B
Go
|
|
package main
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/host-uk/core/pkg/cli"
|
||
|
|
|
||
|
|
// Build variants import commands via self-registration.
|
||
|
|
// See internal/variants/ for available variants: full, ci, php, minimal.
|
||
|
|
_ "github.com/host-uk/core/internal/variants"
|
||
|
|
)
|
||
|
|
|
||
|
|
func main() {
|
||
|
|
cli.Main()
|
||
|
|
}
|