https://github.com/atomicgo/config
📦 Template repository for AtomicGo repositories
https://github.com/atomicgo/config
atomicgo go golang golang-library hacktoberfest
Last synced: 9 months ago
JSON representation
📦 Template repository for AtomicGo repositories
- Host: GitHub
- URL: https://github.com/atomicgo/config
- Owner: atomicgo
- License: mit
- Created: 2023-12-02T22:12:01.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-08T17:04:07.000Z (almost 2 years ago)
- Last Synced: 2025-05-05T04:45:06.339Z (about 1 year ago)
- Topics: atomicgo, go, golang, golang-library, hacktoberfest
- Language: Makefile
- Homepage: https://atomicgo.dev
- Size: 27.3 KB
- Stars: 0
- 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 main
import (
"atomicgo.dev/template"
"fmt"
)
func main() {
fmt.Println(template.HelloWorld())
}
```
#### Output
```
Hello, World!
```
## Index
- [func HelloWorld\(\) string](<#HelloWorld>)
```go
func HelloWorld() string
```
HelloWorld returns \`Hello, World\!\`.
```go
package main
import (
"atomicgo.dev/template"
"fmt"
)
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)