Initial version
Some checks failed
continuous-integration/drone Build is passing
continuous-integration/drone/tag Build is failing

This commit is contained in:
Julien Valverdé
2023-08-31 02:16:43 +02:00
parent 416a133d82
commit cfd90744bc
18 changed files with 477 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import { Effect } from "effect"
import { GitRef } from "../git"
import { GitRefMatcher } from "./GitRefMatcher"
export class CalVerMatcher
extends GitRefMatcher<never, Error> {
constructor(private format: string) {
super()
}
match(_ref: GitRef) {
return Effect.fail(new Error("Not implemented"))
}
}