mirror of https://github.com/usual2970/certimate
				
				
				
			
		
			
				
	
	
		
			15 lines
		
	
	
		
			302 B
		
	
	
	
		
			Go
		
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			302 B
		
	
	
	
		
			Go
		
	
	
| // Package ui handles the PocketBase Admin frontend embedding.
 | |
| package ui
 | |
| 
 | |
| import (
 | |
| 	"embed"
 | |
| 
 | |
| 	"github.com/labstack/echo/v5"
 | |
| )
 | |
| 
 | |
| //go:embed all:dist
 | |
| var distDir embed.FS
 | |
| 
 | |
| // DistDirFS contains the embedded dist directory files (without the "dist" prefix)
 | |
| var DistDirFS = echo.MustSubFS(distDir, "dist")
 |