14 lines
315 B
TypeScript
14 lines
315 B
TypeScript
/**
|
|
* Google API integration module
|
|
*
|
|
* This module provides utilities for interacting with Google APIs:
|
|
* - Authentication (server and client-side)
|
|
* - Sheets API
|
|
*/
|
|
|
|
// Google service modules
|
|
export * as googleAuthClient from './auth/client.ts';
|
|
|
|
export * as googleSheetsClient from './sheets/client.ts';
|
|
|