10 lines
254 B
TypeScript
Raw Normal View History

2018-04-06 15:59:49 +09:00
import { MemberService } from './member.service';
2018-05-31 19:20:14 +09:00
import { MemberTotpService } from './member-totp.service';
import { EmailAuthService } from './email-auth.service';
2018-04-06 15:59:49 +09:00
export const SERVICES = [
MemberService,
2018-04-19 21:35:11 +09:00
MemberTotpService,
2018-05-31 19:20:14 +09:00
EmailAuthService,
2018-04-06 15:59:49 +09:00
];