xxxxxxxxxx
# create the project folder
mkdir stringer && cd stringer
# initialize the project
go mod init https://github.com/ThorstenHans/stringer
# create the repository structure
mkdir -p cmd/stringer
mkdir -p pkg/stringer
touch cmd/stringer/root.go
touch pkg/stringer/stringer.go
touch main.go
# add Cobra as a dependency
go get -u github.com/spf13/cobra@latest
# open project in nvim
nvim .