rewrite connections, messages system, add dm message history, fix multiple bugs, update machine-client

This commit is contained in:
2026-04-11 13:40:13 +02:00
parent 9804a700ce
commit 47c0bcbb0a
8 changed files with 346 additions and 57 deletions
+6
View File
@@ -4,6 +4,8 @@ import (
"fmt"
"strconv"
"strings"
"github.com/google/uuid"
)
func ConvertStringUint32(s string) (uint32, error) {
@@ -26,3 +28,7 @@ func ConvertStringToRgb(str string) ([3]uint8, error) {
}
return rgb, nil
}
func ConvertStringUuid(str string) (uuid.UUID, error) {
return uuid.Parse(str)
}