16 lines
386 B
TypeScript
16 lines
386 B
TypeScript
/**
|
|
* Google API integration module
|
|
*
|
|
* This module provides utilities for interacting with Google APIs:
|
|
* - Authentication (server and client-side)
|
|
* - Sheets API
|
|
* - Gmail API
|
|
*/
|
|
|
|
// Google service modules
|
|
export * as googleAuthServer from './auth/server.ts';
|
|
|
|
export * as googleSheetsServer from './sheets/server.ts';
|
|
|
|
export * as googleGmailServer from './gmail/server.ts';
|