mirror of
https://github.com/mariadb-operator/mariadb-operator.git
synced 2025-08-15 21:02:38 +00:00
18 lines
229 B
Go
18 lines
229 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/mariadb-operator/mariadb-operator/pkg/docker"
|
|
)
|
|
|
|
func main() {
|
|
prefix, err := docker.GetKindCidrPrefix()
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
fmt.Print(prefix)
|
|
}
|