mirror of
https://github.com/henrygd/beszel.git
synced 2025-12-17 02:36:17 +01:00
9 lines
237 B
Go
9 lines
237 B
Go
package user
|
|
|
|
type UserSettings struct {
|
|
// Language string `json:"lang"`
|
|
ChartTime string `json:"chartTime"`
|
|
NotificationEmails []string `json:"emails"`
|
|
NotificationWebhooks []string `json:"webhooks"`
|
|
}
|