21 lines
303 B
TypeScript
21 lines
303 B
TypeScript
// This is a sample file provided by diachron. You are encouraged to modify it.
|
|
|
|
|
|
|
|
|
|
import { core } from "./diachron/core";
|
|
|
|
import { routes } from "./routes";
|
|
import {makeApp}from'./diachron/app'
|
|
|
|
|
|
const app = makeApp({routes});
|
|
|
|
|
|
core.logging.log({ source: "logging", text: ["1"] });
|
|
|
|
|
|
|
|
|
|
app.start()
|