GregBrimble/cf-workers-dashboard

View on GitHub
packages/server/src/models/ContextualEntity.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Context } from "../graphql/context";

abstract class ContextualEntity {
  protected context: Context;

  constructor(context: Context) {
    this.context = context;
  }
}

export { ContextualEntity };