14 lines
177 B
Go
14 lines
177 B
Go
package main
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"git.loyso.art/frx/kurious/internal/common/config"
|
|
)
|
|
|
|
var parseConfigOnce = sync.Once{}
|
|
|
|
type cliConfig struct {
|
|
YDB config.YDB `json:"ydb"`
|
|
}
|