Files
herolib/lib/biz/bizmodel/export_test.v
2025-03-24 06:44:39 +01:00

17 lines
321 B
V

module bizmodel
import os
import freeflowuniverse.herolib.web.docusaurus
const bizmodel_name = 'test'
const export_path = os.join_path(os.dir(@FILE), 'exampledata')
pub fn test_export_report() ! {
model := getset(bizmodel_name)!
model.export_report(Report{
title: 'My Business Model'
},
path: export_path
)!
}