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

This commit is contained in:
Dax 2026-05-23 00:48:09 -04:00 committed by GitHub
commit a9ef5a0fae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 613 additions and 126 deletions

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.
*/