feat(local): check root folder while init

This commit is contained in:
Noah Hsu
2022-06-15 18:48:30 +08:00
parent 9fcdbec5c9
commit 4fa7846f00
2 changed files with 13 additions and 1 deletions

View File

@ -31,3 +31,7 @@ type Proxy struct {
func (a Account) GetAccount() Account {
return a
}
func (a *Account) SetStatus(status string) {
a.Status = status
}