Spaces:
Sleeping
Sleeping
File size: 292 Bytes
57a889c | 1 2 3 4 5 6 7 8 9 10 | import { Module } from '@nestjs/common';
import { TripShareController, SharedController } from './share.controller';
import { ShareService } from './share.service';
@Module({
controllers: [TripShareController, SharedController],
providers: [ShareService],
})
export class ShareModule {}
|