mirror of
				https://github.com/1Panel-dev/1Panel.git
				synced 2025-10-31 03:07:34 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			368 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			368 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package main
 | |
| 
 | |
| import (
 | |
| 	_ "net/http/pprof"
 | |
| 
 | |
| 	"github.com/1Panel-dev/1Panel/agent/server"
 | |
| )
 | |
| 
 | |
| // @title 1Panel
 | |
| // @version 1.0
 | |
| // @description  开源Linux面板
 | |
| // @termsOfService http://swagger.io/terms/
 | |
| // @license.name Apache 2.0
 | |
| // @license.url http://www.apache.org/licenses/LICENSE-2.0.html
 | |
| // @host localhost
 | |
| // @BasePath /api/v2
 | |
| func main() {
 | |
| 	server.Start()
 | |
| }
 |