7 lines
131 B
Go
7 lines
131 B
Go
|
package model
|
||
|
|
||
|
type SiteConfigInterface interface {
|
||
|
GetSiteConfig() (SiteConfig, error)
|
||
|
UpdateSiteConfig(cfg SiteConfig) error
|
||
|
}
|