Open mmmommm opened 2 years ago
goinit
return command lists and those usage
goinit ${name}
create ${name} directory and createFiles function
goinit ${name} -m ${package_name}
create ${name} directory and createFiles function and run go mod init
goinit -v
return version
https://kazuhira-r.hatenablog.com/entry/2021/01/09/220048
text/template
を使って、README.mdとLICENSEファイルを標準入力の値を使って作成する
FROM golang:1.17.3
WORKDIR /app
COPY go.mod ./ COPY go.sum ./ RUN go mod download