mastering bridging

This commit is contained in:
gigihshs
2025-11-24 09:13:08 +07:00
commit e1b99f8f38
115 changed files with 12298 additions and 0 deletions

14
pkg/common/master_data.go Normal file
View File

@@ -0,0 +1,14 @@
package common
import (
"os"
"satusehat-rssa/internal/model"
)
func GetIdentifier(typeName string) model.Identifier {
return model.Identifier{
Use: "official",
System: "http://sys-ids.kemkes.go.id/" + typeName + "/" + os.Getenv("ORGANIZATION_ID"),
Value: os.Getenv("ORGANIZATION_ID"),
}
}