mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
10 lines
295 B
TypeScript
10 lines
295 B
TypeScript
import User from 'Common/Models/User';
|
|
import UserService, { Service as UserServiceType } from '../Services/UserService';
|
|
import BaseAPI from './BaseAPI';
|
|
|
|
export default class UserAPI extends BaseAPI<User, UserServiceType> {
|
|
public constructor() {
|
|
super(User, UserService);
|
|
}
|
|
}
|