holon 0.14.1

A headless, event-driven runtime for long-lived agents
Documentation
1
2
3
4
5
6
7
import botHandler from '../lib/bot-handler.js';

describe('Bot Handler', () => {
    test('should export a function', () => {
        expect(typeof botHandler).toBe('function');
    });
});