refactor: init log

This commit is contained in:
2026-04-04 20:35:41 +03:00
parent 4177c00e75
commit 02f6bb6813
5 changed files with 21 additions and 31 deletions
+11
View File
@@ -0,0 +1,11 @@
package app
import (
"github.com/lorsanstand/HomeOps-Hub/internal/shared/config"
"github.com/rs/zerolog"
)
type App struct {
cfg *config.Config
log *zerolog.Logger
}