19 lines
315 B
Go
19 lines
315 B
Go
/*
|
|
member is peserta
|
|
*/
|
|
package monitoring
|
|
|
|
import (
|
|
"gorm.io/gorm"
|
|
|
|
e "simrs-vx/internal/domain/bpjs-entities/monitoring"
|
|
)
|
|
|
|
type readListMw struct {
|
|
Name string
|
|
Func func(input *e.ReadListDto, data *e.Response, tx *gorm.DB) error
|
|
}
|
|
|
|
var readListPreMw []readListMw // ..
|
|
var readListPostMw []readListMw // ..
|