opencode-cursor-agent/internal/svc/service_context.go

19 lines
276 B
Go

// Code scaffolded by goctl. Safe to edit.
// goctl 1.10.1
package svc
import (
"cursor-api-proxy/internal/config"
)
type ServiceContext struct {
Config config.Config
}
func NewServiceContext(c config.Config) *ServiceContext {
return &ServiceContext{
Config: c,
}
}