14 lines
211 B
Go
14 lines
211 B
Go
package svc
|
|
|
|
import "juwan-backend/app/email/mq/internal/config"
|
|
|
|
type ServiceContext struct {
|
|
c config.Config
|
|
}
|
|
|
|
func NewServiceContext(c config.Config) *ServiceContext {
|
|
return &ServiceContext{
|
|
c: c,
|
|
}
|
|
}
|