10 lines
197 B
TypeScript
10 lines
197 B
TypeScript
// Base
|
|
import * as base from './_crud-base'
|
|
|
|
const path = '/api/vclaim/diagnosa'
|
|
const name = 'diagnose'
|
|
|
|
export function getList(params: any = null) {
|
|
return base.getList(path, params, name)
|
|
}
|