import { Module } from '@nestjs/common';
import { SshafService } from './sshaf.service';

@Module({
  providers: [SshafService],
  exports: [SshafService],
})
export class SshafModule {}
