@euglena/cli
Version:
Command Line Interface to create and manage euglena projects as simple as possible
13 lines (9 loc) • 332 B
text/typescript
/**
* the WebUIOrganelle will be automatically initialized by the angular itself.
* just add other organelles you need.
*/
import { alive } from "@euglena/core";
import { Organelle as TimeOrganelle } from "@euglena/organelle.time.js";
export var organelles = [
new TimeOrganelle()
] as alive.Organelle<any>[];