slask
All checks were successful
Build and Publish / Metadata (push) Successful in 12s
Build and Publish / BuildAndDeployAmd64 (push) Successful in 1m29s
Build and Publish / BuildAndDeployArm64 (push) Successful in 4m27s

This commit is contained in:
matst80
2025-10-15 22:45:53 +02:00
parent 96315383d4
commit 9537dc671f
2 changed files with 4 additions and 5 deletions

View File

@@ -24,9 +24,10 @@ type FileServer struct {
storage actor.LogStorage[cart.CartGrain]
}
func NewFileServer(dataDir string) *FileServer {
func NewFileServer(dataDir string, storage actor.LogStorage[cart.CartGrain]) *FileServer {
return &FileServer{
dataDir: dataDir,
storage: storage,
}
}