### Define and Use Carno.js Modules Source: https://carnojs.github.io/carno.js/docs/intro/index Demonstrates how to define an independent module with controllers and services, and then integrate it into the main Carno.js application. This showcases Carno.js's modularity and plugin system. ```typescript import { Carno } from '@carno.js/core'; export const FeatureModule = new Carno({ exports: [FeatureService] // Make FeatureService available to the parent app }); FeatureModule.controllers([FeatureController]); FeatureModule.services([FeatureService]); // index.ts import { Carno } from '@carno.js/core'; import { FeatureModule } from './feature.module'; const app = new Carno(); app.use(FeatureModule); app.listen(3000); ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.