Initial import

This commit is contained in:
2021-03-02 18:57:41 -06:00
commit be1f615858
23 changed files with 1092 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import {Canonical} from "./Canonical";
export class FakeCanonical<T> extends Canonical<T> {
public async up() {
this.canon.registerCanonical(this)
}
}