mirror of
https://github.com/markwylde/claude-code-gitea-action.git
synced 2026-02-21 11:32:49 +08:00
12 lines
238 B
TypeScript
12 lines
238 B
TypeScript
import { GiteaApiClient, createGiteaClient } from "./gitea-client";
|
|
|
|
export type GitHubClient = {
|
|
api: GiteaApiClient;
|
|
};
|
|
|
|
export function createClient(token: string): GitHubClient {
|
|
return {
|
|
api: createGiteaClient(token),
|
|
};
|
|
}
|