Skip to content
Snippets Groups Projects
web.go 205 B
Newer Older
  • Learn to ignore specific revisions
  • Mark Sagi-Kazar's avatar
    Mark Sagi-Kazar committed
    package web
    
    import (
    	"embed"
    	"io/fs"
    )
    
    
    //go:embed static/* templates/* themes/* robots.txt
    
    Mark Sagi-Kazar's avatar
    Mark Sagi-Kazar committed
    var files embed.FS
    
    // FS returns a filesystem with the default web assets.
    func FS() fs.FS {
    	return files
    }