14 lines
		
	
	
		
			216 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			216 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package svc
 | |
| 
 | |
| import "tianyuan-api/apps/mqs/internal/config"
 | |
| 
 | |
| type ServiceContext struct {
 | |
| 	Config config.Config
 | |
| }
 | |
| 
 | |
| func NewServiceContext(c config.Config) *ServiceContext {
 | |
| 	return &ServiceContext{
 | |
| 		Config: c,
 | |
| 	}
 | |
| }
 |