20 lines
523 B
TypeScript
20 lines
523 B
TypeScript
/** @file
|
|
* @author Edouard DUPIN
|
|
* @copyright 2024, Edouard DUPIN, all right reserved
|
|
* @license PROPRIETARY (see license file)
|
|
*/
|
|
|
|
import { CookiesService, StorageService, PopInService, SessionService, UserService, SSOService, NotificationService } from "./service";
|
|
import { HttpWrapperService } from "./service/http-wrapper_kjdhqslkjf";
|
|
|
|
|
|
export const ALL_SERVICES = [
|
|
CookiesService,
|
|
HttpWrapperService,
|
|
StorageService,
|
|
PopInService,
|
|
SessionService,
|
|
UserService,
|
|
SSOService,
|
|
NotificationService,
|
|
]; |