oneuptime/CommonServer/API/UserCallApi.ts
Simon Larsen 1ee94f10c4
fix fmt
2023-06-14 20:13:24 +01:00

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);
}
}