Merge branch 'dev' of github.com:dikstub-rssa/simrs-be into feat/bpjs-api-70

This commit is contained in:
dpurbosakti
2025-10-16 17:22:21 +07:00
6 changed files with 167 additions and 1 deletions
@@ -169,6 +169,10 @@ func SetRoutes() http.Handler {
"PATCH /{id}": encounter.O.Update,
"DELETE /{id}": encounter.O.Delete,
"PATCH /{id}/checkout": encounter.O.CheckOut,
"PATCH /{id}/proccess": encounter.O.Process,
"PATCH /{id}/cancel": encounter.O.Cancel,
"PATCH /{id}/reject": encounter.O.Reject,
"PATCH /{id}/skip": encounter.O.Skip,
})
hk.GroupRoutes("/v1/medication", r, auth.GuardMW, hk.MapHandlerFunc{
"GET /": medication.O.GetList,