Files
sim/apps/sim/tools/google_sheets/index.ts

10 lines
337 B
TypeScript

import { appendTool } from './append'
import { readTool } from './read'
import { updateTool } from './update'
import { writeTool } from './write'
export const googleSheetsReadTool = readTool
export const googleSheetsWriteTool = writeTool
export const googleSheetsUpdateTool = updateTool
export const googleSheetsAppendTool = appendTool