feat: initialize

This commit is contained in:
2024-11-30 01:22:51 +03:30
commit 3b0aff5688
16 changed files with 761 additions and 0 deletions

View 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"`
}