export const giteeUserInfoScope = "user_info";
export const giteeProjectsScope = "projects";

export const giteeUserInfoScopes: string[] = [giteeUserInfoScope];
export const giteeProjectScopes: string[] = [giteeProjectsScope];
export const giteeOAuthScopes: string[] = [giteeUserInfoScope, giteeProjectsScope];
