chore: fix typo

This commit is contained in:
Noah Hsu
2022-07-12 18:41:16 +08:00
parent 2bff656f00
commit a16da3b45e
7 changed files with 17 additions and 6 deletions

View File

@ -27,8 +27,8 @@ type Proxy struct {
DownProxyUrl string `json:"down_proxy_url"`
}
func (a Storage) GetStorage() Storage {
return a
func (a *Storage) GetStorage() Storage {
return *a
}
func (a *Storage) SetStatus(status string) {