Merge branch 'master' into delete_scene

This commit is contained in:
WithoutPants
2019-08-25 17:41:32 +10:00
committed by GitHub
17 changed files with 578 additions and 47 deletions

View File

@@ -26,9 +26,22 @@ type ConfigGeneralResult struct {
GeneratedPath string `json:"generatedPath"`
}
type ConfigInterfaceInput struct {
// Custom CSS
CSS *string `json:"css"`
CSSEnabled *bool `json:"cssEnabled"`
}
type ConfigInterfaceResult struct {
// Custom CSS
CSS *string `json:"css"`
CSSEnabled *bool `json:"cssEnabled"`
}
// All configuration settings
type ConfigResult struct {
General *ConfigGeneralResult `json:"general"`
General *ConfigGeneralResult `json:"general"`
Interface *ConfigInterfaceResult `json:"interface"`
}
type FindFilterType struct {