import { Module } from '@nestjs/common'
import { AuthApiService } from './auth-api.service'
import { ConfigModule, ConfigService } from '@nestjs/config'

@Module({
  imports: [
    ConfigModule
  ],
  providers: [AuthApiService],
  controllers: [],
  exports: [AuthApiService]
})
export class AuthApiModule {}
