feat(project): resolve remote-backed project identity (#28914)

This commit is contained in:
Dax
2026-05-23 04:48:09 +00:00
committed by GitHub
parent 0cf9a5d20b
commit a9ef5a0fae
6 changed files with 613 additions and 126 deletions
+6
View File
@@ -1,5 +1,11 @@
import { Option, Schema, SchemaGetter } from "effect"
export const AbsolutePath = Schema.String.pipe(Schema.brand("AbsolutePath"))
export type AbsolutePath = typeof AbsolutePath.Type
export const RelativePath = Schema.String.pipe(Schema.brand("RelativePath"))
export type RelativePath = typeof RelativePath.Type
/**
* Integer greater than zero.
*/