wip encounter + medication

This commit is contained in:
dpurbosakti
2025-09-17 11:47:03 +07:00
parent c8e32e8239
commit 86a073164d
14 changed files with 164 additions and 57 deletions
+6
View File
@@ -4,6 +4,7 @@ import (
"errors"
"fmt"
"strings"
"time"
pl "simrs-vx/pkg/logger"
@@ -126,3 +127,8 @@ func kebabToPascal(input string) string {
}
return strings.Join(parts, "")
}
func GetTimeNow() *time.Time {
tmp := time.Now()
return &tmp
}