mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02: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);
|
|
}
|
|
}
|