mirror of
				https://gitee.com/dromara/mayfly-go
				synced 2025-11-04 16:30:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			159 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			159 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package static
 | 
						|
 | 
						|
import "embed"
 | 
						|
 | 
						|
// 使用1.16特性编译阶段将静态资源文件打包进编译好的程序
 | 
						|
var (
 | 
						|
	//go:embed static/**
 | 
						|
	Static embed.FS
 | 
						|
)
 |