Better log viewer in launchpad

This commit is contained in:
2025-12-13 19:47:39 +08:00
parent d830c381d4
commit 95005c0cff
7 changed files with 452 additions and 45 deletions

9
pkg/shared/hash/mod.go Normal file
View File

@@ -0,0 +1,9 @@
package hash
import "hash/fnv"
func Hash(s string) uint32 {
h := fnv.New32a()
h.Write([]byte(s))
return h.Sum32()
}