✨ Probe.FullTags()
This commit is contained in:
parent
d8cae5b9c4
commit
c9498340d0
4 changed files with 28 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue