https://github.com/atomicgo/template
📦 Template repository for AtomicGo repositories
https://github.com/atomicgo/template
atomicgo go golang golang-library hacktoberfest
Last synced: about 2 months ago
JSON representation
📦 Template repository for AtomicGo repositories
- Host: GitHub
- URL: https://github.com/atomicgo/template
- Owner: atomicgo
- License: mit
- Created: 2020-11-26T10:09:56.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-03-15T00:47:42.000Z (3 months ago)
- Last Synced: 2025-03-15T01:25:52.988Z (3 months ago)
- Topics: atomicgo, go, golang, golang-library, hacktoberfest
- Language: Go
- Homepage: https://atomicgo.dev
- Size: 106 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
AtomicGo | template
---
Documentation
|
Contributing
|
Code of Conduct---
![]()
go get atomicgo.dev/template
# template
```go
import "atomicgo.dev/template"
```Package template is used to generate new AtomicGo repositories.
Write the description of the module here. You can use \*\*markdown\*\*\! This description should clearly explain what the package does.
Example description: https://golang.org/src/encoding/gob/doc.go
```go
package mainimport (
"fmt""atomicgo.dev/template"
)func main() {
fmt.Println(template.HelloWorld())
}
```#### Output
```
Hello, World!
```## Index
- [func HelloWorld\(\) string](<#HelloWorld>)
```go
func HelloWorld() string
```HelloWorld returns \`Hello, World\!\`.
```go
package mainimport (
"fmt""atomicgo.dev/template"
)func main() {
fmt.Println(template.HelloWorld())
}
```#### Output
```
Hello, World!
```Generated by [gomarkdoc]()
---
> [AtomicGo.dev](https://atomicgo.dev) ·
> with ❤️ by [@MarvinJWendt](https://github.com/MarvinJWendt) |
> [MarvinJWendt.com](https://marvinjwendt.com)