You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docker-infisical/backend/src/integrations/index.ts

13 lines
294 B

import { exchangeCode } from "./exchange";
import { exchangeRefresh } from "./refresh";
import { getApps } from "./apps";
import { getTeams } from "./teams";
import { revokeAccess } from "./revoke";
export {
exchangeCode,
exchangeRefresh,
getApps,
getTeams,
revokeAccess,
}