20 lines
821 B
V
20 lines
821 B
V
module models
|
|
|
|
// This module provides data models for various domains including:
|
|
// - Core models (comments, etc.)
|
|
// - Finance models (accounts, assets, marketplace)
|
|
// - Flow models (workflows, signatures)
|
|
// - Business models (companies, products, sales, payments)
|
|
// - Identity models (KYC verification)
|
|
// - Payment models (Stripe webhooks)
|
|
// - Location models (addresses)
|
|
|
|
// Import all model modules for easy access
|
|
import freeflowuniverse.herolib.threefold.models.core
|
|
import freeflowuniverse.herolib.threefold.models.finance
|
|
import freeflowuniverse.herolib.threefold.models.flow
|
|
import freeflowuniverse.herolib.threefold.models.business
|
|
import freeflowuniverse.herolib.threefold.models.identity
|
|
import freeflowuniverse.herolib.threefold.models.payment
|
|
import freeflowuniverse.herolib.threefold.models.location
|