2024-08-01 17:01:50 +00:00
|
|
|
/**
|
|
|
|
* This module defines all components pertaining to "Profiles", that is,
|
|
|
|
* isolated Finnow databases that belong to a single user. Each profile is
|
|
|
|
* completely separate from all others.
|
|
|
|
*/
|
|
|
|
module profile;
|
2024-09-19 19:12:23 +00:00
|
|
|
|
|
|
|
public import profile.api;
|
|
|
|
public import profile.data;
|
|
|
|
public import profile.data_impl_sqlite;
|
|
|
|
public import profile.model;
|
|
|
|
public import profile.service;
|