16 lines
		
	
	
		
			214 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			214 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package web
 | |
| 
 | |
| import "embed"
 | |
| 
 | |
| //go:embed dist/*
 | |
| var StaticDist embed.FS
 | |
| 
 | |
| //go:embed authentik
 | |
| var StaticAuthentik embed.FS
 | |
| 
 | |
| //go:embed robots.txt
 | |
| var RobotsTxt []byte
 | |
| 
 | |
| //go:embed security.txt
 | |
| var SecurityTxt []byte
 | 
