golang.org/x/build@v0.0.0-20240506185731-218518f32b70/internal/relui/content.go (about)

     1  // Copyright 2021 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package relui
     6  
     7  import (
     8  	"embed"
     9  )
    10  
    11  // static is our static web server content.
    12  //
    13  //go:embed static
    14  var static embed.FS
    15  
    16  // templates are our template files.
    17  //
    18  //go:embed templates
    19  var templates embed.FS
    20  
    21  // migrations are database migration SQL files generated by
    22  // golang-migrate.
    23  //
    24  //go:embed migrations
    25  var migrations embed.FS