io-actions/app/toolbox/index.js
2025-08-22 15:03:14 -05:00

25 lines
552 B
JavaScript

import Feeds from './feeds.js'
import Logic from './logic.js'
import Math from './math.js'
import Notifications from './notifications.js'
import Weather from './weather.js'
import Text from './text.js'
import Time from './time.js'
import Triggers from './triggers.js'
import Utility from './utility.js'
import Variables from './variables.js'
// specify toolbox categories in the order we wish them to appear
export default [
Triggers,
{ kind: 'sep' },
Logic,
Math,
Text,
Time,
Variables,
Feeds,
Notifications,
Weather,
Utility
]