mirror of
https://github.com/usememos/memos.git
synced 2024-12-28 08:03:01 +08:00
8 lines
157 B
Go
8 lines
157 B
Go
package api
|
|
|
|
import "memos/server/profile"
|
|
|
|
type SystemStatus struct {
|
|
Owner *User `json:"owner"`
|
|
Profile *profile.Profile `json:"profile"`
|
|
}
|