update package comments

This commit is contained in:
Henry Dollman
2024-09-14 16:46:48 -04:00
parent 138cbc13d6
commit aef99c3bd9
3 changed files with 4 additions and 2 deletions

View File

@@ -1,3 +1,4 @@
// Package agent handles the agent's SSH server and system stats collection.
package agent
import (

View File

@@ -1,3 +1,4 @@
// Package update handles updating beszel and beszel-agent.
package update
import (

View File

@@ -1,4 +1,4 @@
// Package user handles user-related custom functionality.
// Package users handles user-related custom functionality.
package users
import (
@@ -14,10 +14,10 @@ type UserManager struct {
}
type UserSettings struct {
// Language string `json:"lang"`
ChartTime string `json:"chartTime"`
NotificationEmails []string `json:"emails"`
NotificationWebhooks []string `json:"webhooks"`
// Language string `json:"lang"`
}
func NewUserManager(app *pocketbase.PocketBase) *UserManager {