refactor: move gateway config to vault package

This commit is contained in:
Prad Nukala
2024-12-10 15:28:39 -05:00
parent 45bc823de0
commit aa43770bf4
5 changed files with 1 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
package embed
import (
_ "embed"
)
//go:embed index.html
var IndexHTML []byte
//go:embed main.js
var MainJS []byte
//go:embed sw.js
var WorkerJS []byte