| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- import { Hono } from "hono"
- import { describeRoute } from "hono-openapi"
- import { resolver } from "hono-openapi"
- import { Instance } from "../project/instance"
- import { Project } from "../project/project"
- export const ProjectRoute = new Hono()
- .get(
- "/",
- describeRoute({
- description: "List all projects",
- operationId: "project.list",
- responses: {
- 200: {
- description: "List of projects",
- content: {
- "application/json": {
- schema: resolver(Project.Info.array()),
- },
- },
- },
- },
- }),
- async (c) => {
- const projects = await Project.list()
- return c.json(projects)
- },
- )
- .get(
- "/current",
- describeRoute({
- description: "Get the current project",
- operationId: "project.current",
- responses: {
- 200: {
- description: "Current project",
- content: {
- "application/json": {
- schema: resolver(Project.Info),
- },
- },
- },
- },
- }),
- async (c) => {
- return c.json(Instance.project)
- },
- )
|