15 lines
234 B
Go
15 lines
234 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"git.assilvestrar.club/lourenco/go-hugo-cms.git/pkg/git"
|
|
)
|
|
|
|
func main() {
|
|
options := git.GitOptions{
|
|
URL: "https://git.assilvestrar.club/lourenco/go-hugo-cms.git",
|
|
}
|
|
fmt.Println(options.Clone())
|
|
}
|