mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-24 03:09:48 -04:00
29 lines
1000 B
TypeScript
29 lines
1000 B
TypeScript
import { Location } from "@opencode-ai/core/location"
|
|
import { Reference } from "@opencode-ai/core/reference"
|
|
import { Schema } from "effect"
|
|
import { HttpApiEndpoint, HttpApiGroup, OpenApi } from "effect/unstable/httpapi"
|
|
import { LocationMiddleware, LocationQuery, locationQueryOpenApi } from "./location"
|
|
|
|
export const ReferenceGroup = HttpApiGroup.make("server.reference")
|
|
.add(
|
|
HttpApiEndpoint.get("reference.list", "/api/reference", {
|
|
query: LocationQuery,
|
|
success: Location.response(Schema.Array(Reference.Info)),
|
|
})
|
|
.annotateMerge(locationQueryOpenApi)
|
|
.annotateMerge(
|
|
OpenApi.annotations({
|
|
identifier: "v2.reference.list",
|
|
summary: "List references",
|
|
description: "List references available in the requested location.",
|
|
}),
|
|
),
|
|
)
|
|
.annotateMerge(
|
|
OpenApi.annotations({
|
|
title: "reference",
|
|
description: "Location-scoped project references.",
|
|
}),
|
|
)
|
|
.middleware(LocationMiddleware)
|