20 lines
368 B
TypeScript
20 lines
368 B
TypeScript
import { ArianeService } from "./ariane";
|
|
import { DataService } from "./data";
|
|
import { SeasonService } from "./season";
|
|
import { SeriesService } from "./series";
|
|
import { TypeService } from "./type";
|
|
import { VideoService } from "./video";
|
|
|
|
|
|
|
|
export {
|
|
ArianeService,
|
|
DataService,
|
|
SeasonService,
|
|
SeriesService,
|
|
TypeService,
|
|
VideoService,
|
|
};
|
|
|
|
|