mirror of
https://github.com/cheat/cheat.git
synced 2025-09-01 09:38:29 +02:00
12 lines
166 B
Go
12 lines
166 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/cheat/cheat/internal/config"
|
|
)
|
|
|
|
func cmdConf(opts map[string]interface{}, conf config.Config) {
|
|
fmt.Println(conf.Path)
|
|
}
|