mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-23 07:42:10 +00:00
15 lines
349 B
TypeScript
15 lines
349 B
TypeScript
import UserCall from 'Model/Models/UserCall';
|
|
import UserCallService, {
|
|
Service as UserCallServiceType,
|
|
} from '../Services/UserCallService';
|
|
import BaseAPI from './BaseAPI';
|
|
|
|
export default class UserCallAPI extends BaseAPI<
|
|
UserCall,
|
|
UserCallServiceType
|
|
> {
|
|
public constructor() {
|
|
super(UserCall, UserCallService);
|
|
}
|
|
}
|