seagull-js/seagull

View on GitHub
packages/seed/src/service.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { injectable, optional } from 'inversify'
import 'reflect-metadata'
import { TestScope } from './test-scope'

@injectable()
export abstract class SeedableService {
  constructor(@optional() protected testScope?: TestScope) {}
}