github.com/10ego/gthp@v0.0.0-20241025155251-e1514fa71fbb/internal/handlers/types.go (about)

     1  package handlers
     2  
     3  import (
     4  	"html/template"
     5  
     6  	ldap "github.com/10ego/gthp/internal/auth"
     7  	"github.com/10ego/gthp/internal/config"
     8  	"github.com/10ego/gthp/internal/database"
     9  	"go.uber.org/zap"
    10  )
    11  
    12  type Handler struct {
    13  	config     *config.Config
    14  	db         *database.DB
    15  	ldapClient *ldap.Client
    16  	templates  *template.Template
    17  	log        *zap.SugaredLogger
    18  }