Add content config to renderer handler

pull/1/head
Nikita Tokarchuk 2 years ago
parent d017015662
commit ea58971e86
Signed by: mainnika
GPG Key ID: A595FB7E3E56911C
  1. 1
      frontend/main.go
  2. 3
      frontend/renderer/renderer.go

@ -62,6 +62,7 @@ func main() {
rendererHandler := &renderer.Renderer{
GhostClient: ghostClient,
ContentConfig: config.Content,
Base: config.Base,
}

@ -6,6 +6,7 @@ import (
routing "github.com/jackwhelpton/fasthttp-routing/v2"
"github.com/valyala/fasthttp"
"code.tokarch.uk/mainnika/nikita-tokarch-uk/frontend/config"
"code.tokarch.uk/mainnika/nikita-tokarch-uk/frontend/ghost"
"code.tokarch.uk/mainnika/nikita-tokarch-uk/frontend/templates"
)
@ -13,6 +14,8 @@ import (
// Renderer is the main handler that contains all routes handlers
type Renderer struct {
GhostClient ghost.Client
ContentConfig config.Content
Base string
router *routing.Router

Loading…
Cancel
Save