able to get product

This commit is contained in:
Gitea
2023-11-30 00:39:51 +03:00
parent 606b94e35b
commit 414dc87091
19 changed files with 2204 additions and 77 deletions

View File

@ -0,0 +1,13 @@
package main
import (
"sync"
"git.loyso.art/frx/kurious/internal/common/config"
)
var parseConfigOnce = sync.Once{}
type cliConfig struct {
YDB config.YDB `json:"ydb"`
}