mirror of
https://github.com/documenso/documenso.git
synced 2025-11-22 04:31:39 +10:00
8 lines
247 B
TypeScript
8 lines
247 B
TypeScript
import { getTeamPrices } from '@documenso/ee/server-only/stripe/get-team-prices';
|
|
|
|
import { authenticatedProcedure } from '../trpc';
|
|
|
|
export const getTeamPricesRoute = authenticatedProcedure.query(async () => {
|
|
return await getTeamPrices();
|
|
});
|