mirror of
https://github.com/aykhans/dodo.git
synced 2025-09-08 03:50:46 +00:00
12 lines
166 B
Go
12 lines
166 B
Go
package main
|
|
|
|
import (
|
|
"github.com/aykhans/dodo/pkg/config"
|
|
"github.com/k0kubun/pp/v3"
|
|
)
|
|
|
|
func main() {
|
|
cfg := config.ReadAllConfigs()
|
|
pp.Println(cfg) //nolint
|
|
}
|