File size: 403 Bytes
f0953a4
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import { Cloud115Service } from "../services/Cloud115Service";
import { injectable, inject } from "inversify";
import { TYPES } from "../core/types";
import { BaseCloudController } from "./BaseCloudController";

@injectable()
export class Cloud115Controller extends BaseCloudController {
  constructor(@inject(TYPES.Cloud115Service) cloud115Service: Cloud115Service) {
    super(cloud115Service);
  }
}