package handler import ( "ticket-pimp/internal/services" ) type Handler struct { git services.IGit cloud services.ICloud coda services.ICoda key string id string } func NewHandler( git services.IGit, cloud services.ICloud, coda services.ICoda, ) *Handler { return &Handler{ git: git, cloud: cloud, coda: coda, } }