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