mirror of
				https://github.com/steveiliop56/tinyauth.git
				synced 2025-11-03 15:45:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			147 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			147 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package assets
 | 
						|
 | 
						|
import (
 | 
						|
	"embed"
 | 
						|
)
 | 
						|
 | 
						|
// UI assets
 | 
						|
//
 | 
						|
//go:embed dist
 | 
						|
var Assets embed.FS
 | 
						|
 | 
						|
// Version file
 | 
						|
//
 | 
						|
//go:embed version
 | 
						|
var Version string
 |