Probe.FullTags()

This commit is contained in:
Dan Jones 2023-09-08 21:31:13 -05:00
commit c9498340d0
4 changed files with 28 additions and 1 deletions

View file

@ -9,6 +9,8 @@ import (
"path/filepath"
)
const Version string = "0.1.0"
type Config struct {
Source string `toml:"source"`
SourceExtensions []string `toml:"source_ext"`
@ -23,6 +25,10 @@ type Config struct {
AcousticUserKey string `toml:"acoustic_user_key"`
}
func (c Config) Version() string {
return Version
}
var config Config
func newConfig() Config {