memos/api/system.go

9 lines
177 B
Go
Raw Normal View History

package api
2022-06-27 17:09:06 +03:00
import "github.com/usememos/memos/server/profile"
2022-05-17 16:21:13 +03:00
type SystemStatus struct {
2022-05-22 04:29:34 +03:00
Owner *User `json:"owner"`
Profile *profile.Profile `json:"profile"`
}