MCPcopy
hub / github.com/Dimillian/CodexMonitor / createGitHubRepo

Function createGitHubRepo

src/services/tauri.ts:592–604  ·  view source on GitHub ↗
(
  workspaceId: string,
  repo: string,
  visibility: "private" | "public",
  branch?: string | null,
)

Source from the content-addressed store, hash-verified

590 };
591
592export async function createGitHubRepo(
593 workspaceId: string,
594 repo: string,
595 visibility: "private" | "public",
596 branch?: string | null,
597): Promise<CreateGitHubRepoResponse> {
598 return invoke<CreateGitHubRepoResponse>("create_github_repo", {
599 workspaceId,
600 repo,
601 visibility,
602 branch,
603 });
604}
605
606export async function listGitRoots(
607 workspace_id: string,

Callers 2

tauri.test.tsFile · 0.90
useInitGitRepoPromptFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected