16 lines
367 B
Go
16 lines
367 B
Go
package main
|
|
|
|
type Config struct {
|
|
Student struct {
|
|
Name string `yaml:"name"`
|
|
Profession string `yaml:"profession"`
|
|
Company string `yaml:"company"`
|
|
Supervisor string `yaml:"supervisor"`
|
|
} `yaml:"student"`
|
|
Project struct {
|
|
Title string `yaml:"title"`
|
|
Period string `yaml:"period"`
|
|
Subtitle string `yaml:"subtitle"`
|
|
} `yaml:"project"`
|
|
}
|