mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 12:20:40 -07:00
16 lines
276 B
TypeScript
16 lines
276 B
TypeScript
import { output } from './output'
|
|
import { tag } from './tag'
|
|
import { demo } from './demo'
|
|
import { layout } from './layout'
|
|
import { memory } from './memory'
|
|
|
|
async function main () {
|
|
await output()
|
|
await tag()
|
|
await demo()
|
|
await layout()
|
|
await memory()
|
|
}
|
|
|
|
main()
|