8063652dbf
* feat(server): WIP automations api * feat(server): Automations Backend api WIP take 2 * feat(automations): add validation to automation run schema with zod * fix(server): add zod to package.json * fix(server): automations pr cleanup
11 lines
258 B
TypeScript
11 lines
258 B
TypeScript
import { moduleLogger } from '@/logging/logging'
|
|
import { SpeckleModule } from '@/modules/shared/helpers/typeHelper'
|
|
|
|
const automationModule: SpeckleModule = {
|
|
init() {
|
|
moduleLogger.info('🤖 Init automations module')
|
|
}
|
|
}
|
|
|
|
export = automationModule
|