1
0
mirror of https://github.com/cheat/cheat.git synced 2025-04-24 10:26:09 +02:00
Chris Lane e5114a3e76 Re-wrote from scratch in Golang
- Re-implemented the project in Golang, and deprecated Python entirely
- Implemented several new, long-requested features
- Refactored cheatsheets into a separate repository
2019-10-20 10:02:28 -04:00

11 lines
120 B
Go

package main
import (
"fmt"
)
// cmdInit displays an example config file.
func cmdInit() {
fmt.Println(configs())
}