...

Source file src/github.com/cybertec-postgresql/pgwatch/v3/internal/webui/embed.go

Documentation: github.com/cybertec-postgresql/pgwatch/v3/internal/webui

     1  package webui
     2  
     3  import (
     4  	"embed"
     5  	"io/fs"
     6  )
     7  
     8  //go:embed build
     9  var efs embed.FS
    10  
    11  var WebUIFs fs.FS
    12  
    13  func init() {
    14  	WebUIFs, _ = fs.Sub(efs, "build")
    15  }
    16