mirror of
https://github.com/simstudioai/sim.git
synced 2026-02-06 20:55:23 -05:00
10 lines
337 B
TypeScript
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
|