14 lines
		
	
	
		
			314 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			314 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package config
 | |
| 
 | |
| import (
 | |
| 	"SafelineAPI/internal/class/Acme"
 | |
| 	"SafelineAPI/internal/class/Safeline"
 | |
| )
 | |
| 
 | |
| type Config struct {
 | |
| 	Concurrency int               `json:"Concurrency"`
 | |
| 	Days        int               `json:"Days"`
 | |
| 	Server      Safeline.SafeLine `json:"Server"`
 | |
| 	Acme        Acme.Acme         `json:"Acme"`
 | |
| }
 |