feat: initialize
This commit is contained in:
12
internal/config/config.type.go
Normal file
12
internal/config/config.type.go
Normal file
@@ -0,0 +1,12 @@
|
||||
package config
|
||||
|
||||
type JobDef struct {
|
||||
Key string `yaml:"key"`
|
||||
Name string `yaml:"name"`
|
||||
EntryClass string `yaml:"entryClass"`
|
||||
JarURI string `yaml:"jarURI"`
|
||||
}
|
||||
|
||||
type Config struct {
|
||||
Jobs []JobDef `yaml:"jobs"`
|
||||
}
|
||||
Reference in New Issue
Block a user