almost done, not tested yet

This commit is contained in:
dpurbosakti
2025-10-14 16:39:28 +07:00
parent d3f441dd56
commit 3e4ce7d1bf
15 changed files with 221 additions and 48 deletions
+9
View File
@@ -0,0 +1,9 @@
package bpjs
import (
a "github.com/karincake/apem"
)
func SetConfig() {
a.ParseSingleCfg(&O)
}
+7
View File
@@ -0,0 +1,7 @@
package bpjs
var O BpjsCfg = BpjsCfg{}
type BpjsCfg struct {
BaseUrl string `yaml:"baseUrl"`
}