mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 23:30:10 +00:00
12 lines
299 B
TypeScript
12 lines
299 B
TypeScript
import User from 'Model/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);
|
|
}
|
|
}
|