Initial upload: Project Scaffold CLI with multi-language templates and CI/CD

This commit is contained in:
2026-02-05 11:01:22 +00:00
parent 60d7a56543
commit e0fa345c27

View File

@@ -0,0 +1,27 @@
# {{ project_name }}
{{ description }}
## Installation
```bash
go get github.com/{{ author|replace(' ', '-') }}/{{ project_slug }}
```
## Usage
```go
package main
import (
"{{ author|replace(' ', '-') }}/{{ project_slug }}"
)
func main() {
{{ project_slug }}.Run()
}
```
## License
{{ license }}