mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-15 10:30:37 +09:00
28 lines
456 B
TypeScript
28 lines
456 B
TypeScript
|
|
export {
|
||
|
|
createAgentSchema,
|
||
|
|
updateAgentSchema,
|
||
|
|
type CreateAgent,
|
||
|
|
type UpdateAgent,
|
||
|
|
} from "./agent.js";
|
||
|
|
|
||
|
|
export {
|
||
|
|
createProjectSchema,
|
||
|
|
updateProjectSchema,
|
||
|
|
type CreateProject,
|
||
|
|
type UpdateProject,
|
||
|
|
} from "./project.js";
|
||
|
|
|
||
|
|
export {
|
||
|
|
createIssueSchema,
|
||
|
|
updateIssueSchema,
|
||
|
|
type CreateIssue,
|
||
|
|
type UpdateIssue,
|
||
|
|
} from "./issue.js";
|
||
|
|
|
||
|
|
export {
|
||
|
|
createGoalSchema,
|
||
|
|
updateGoalSchema,
|
||
|
|
type CreateGoal,
|
||
|
|
type UpdateGoal,
|
||
|
|
} from "./goal.js";
|