Files
satusehat-bridging/pkg/common/master_data.go
2025-11-24 09:13:08 +07:00

15 lines
305 B
Go

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"),
}
}