mirror of
https://github.com/cheat/cheat.git
synced 2024-11-22 14:01:36 +01:00
e5114a3e76
- Re-implemented the project in Golang, and deprecated Python entirely - Implemented several new, long-requested features - Refactored cheatsheets into a separate repository
11 lines
120 B
Go
11 lines
120 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// cmdInit displays an example config file.
|
|
func cmdInit() {
|
|
fmt.Println(configs())
|
|
}
|