mirror of
				https://github.com/steveiliop56/tinyauth.git
				synced 2025-10-29 05:05:42 +00:00 
			
		
		
		
	 03d06cb0a7
			
		
	
	03d06cb0a7
	
	
	
		
			
			* feat: add sqlite database for storing sessions * refactor: use db instance instead of service in auth service * fix: coderabbit suggestions
		
			
				
	
	
		
			16 lines
		
	
	
		
			166 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			166 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package assets
 | |
| 
 | |
| import (
 | |
| 	"embed"
 | |
| )
 | |
| 
 | |
| // Frontend
 | |
| //
 | |
| //go:embed dist
 | |
| var FrontendAssets embed.FS
 | |
| 
 | |
| // Migrations
 | |
| //
 | |
| //go:embed migrations/*.sql
 | |
| var Migrations embed.FS
 |