mirror of
https://github.com/lorsanstand/HomeOps-Hub.git
synced 2026-06-19 16:45:15 +03:00
12 lines
172 B
Go
12 lines
172 B
Go
package app
|
|
|
|
import (
|
|
"github.com/lorsanstand/HomeOps-Hub/internal/shared/config"
|
|
"github.com/rs/zerolog"
|
|
)
|
|
|
|
type App struct {
|
|
cfg *config.Config
|
|
log *zerolog.Logger
|
|
}
|