refactor: migrate config package to pkg directory

This commit is contained in:
Prad Nukala
2024-12-11 12:24:04 -05:00
parent 0502f52ec0
commit d667c3c604
11 changed files with 9 additions and 9 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