-
-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initialized the solution with structure
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import client from '@package/client' | ||
|
||
export default class ProjectController { | ||
private static apiClient = client | ||
|
||
static async createProject() {} | ||
static async updateProject() {} | ||
static async deleteProject() {} | ||
static async getProject() {} | ||
static async forkProject() {} | ||
static async syncFork() {} | ||
static async unlinkFork() {} | ||
static async getForks() {} | ||
static async getAllProjects() {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
export interface CreateProjectRequest {} | ||
export interface CreateProjectResponse {} | ||
export interface UpdateProjectRequest {} | ||
export interface UpdateProjectResponse {} | ||
export interface DeleteProjectRequest {} | ||
export interface DeleteProjectResponse {} | ||
export interface GetProjectRequest {} | ||
export interface GetProjectResponse {} | ||
export interface ForkProjectRequest {} | ||
export interface ForkProjectResponse {} | ||
export interface SyncProjectRequest {} | ||
export interface SyncProjectResponse {} | ||
export interface UnlinkProjectRequest {} | ||
export interface UnlinkProjectResponse {} | ||
export interface GetForkRequest {} | ||
export interface GetForkResponse {} | ||
export interface GetAllProjectsRequest {} | ||
export interface GetAllProjectsResponse {} |