Start laying out the structure of gooni

This commit is contained in:
Arturo Filastò 2018-02-07 20:02:18 +02:00
commit 7327e1ff7f
22 changed files with 529 additions and 0 deletions

8
config/notifications.go Normal file
View file

@ -0,0 +1,8 @@
package config
// Notifications settings
type Notifications struct {
Enabled bool `json:"enabled"`
NotifyOnTestCompletion bool `json:"notify_on_test_completion"`
NotifyOnNews bool `json:"notify_on_news"`
}