mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-14 00:26:51 +08:00
11 lines
190 B
TypeScript
11 lines
190 B
TypeScript
import './config';
|
|
|
|
import { Module } from '@nestjs/common';
|
|
|
|
import { CustomerIoService } from './service';
|
|
|
|
@Module({
|
|
providers: [CustomerIoService],
|
|
})
|
|
export class CustomerIoModule {}
|