Switched from Dockmon to Beszel

This commit is contained in:
2025-10-31 17:13:00 +01:00
parent cc6454cef9
commit f4a4142799
75 changed files with 24313 additions and 122 deletions

View File

@@ -0,0 +1,9 @@
package main
// truncateID truncates an ID string to specified length
func truncateID(id string, length int) string {
if len(id) <= length {
return id
}
return id[:length]
}