mirror of
https://github.com/usememos/memos.git
synced 2024-12-19 09:02:49 +03:00
bdc9632b5b
* chore: rename user role to `host` * chore: related frontend changes * chore: fix migration file * chore: use tricky sql
9 lines
176 B
Go
9 lines
176 B
Go
package api
|
|
|
|
import "github.com/usememos/memos/server/profile"
|
|
|
|
type SystemStatus struct {
|
|
Host *User `json:"host"`
|
|
Profile *profile.Profile `json:"profile"`
|
|
}
|