/
githubmirror
/
sqlc
Обзор
Документация
Войти
/
githubmirror
/
sqlc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/cmd/options.go
29 строк
534 B
Kyle Gray
feat: Managed databases with any accessible server (#3421)
06 июн 2024, 00:36
Не верифицирован
06 июн 2024, 00:36
757187c
Код
Авторство
О чём код?
package cmd import ( "io" "github.com/sqlc-dev/sqlc/internal/config" ) type Options struct { Env Env Stderr io.Writer // TODO: Move these to a command-specific struct Tags []string Against string // Testing only MutateConfig func(*config.Config) } func (o *Options) ReadConfig(dir, filename string) (string, *config.Config, error) { path, conf, err := readConfig(o.Stderr, dir, filename) if err != nil { return path, conf, err } if o.MutateConfig != nil { o.MutateConfig(conf) } return path, conf, nil }