10 lines
233 B
V
10 lines
233 B
V
module vfs_mail
|
|
|
|
import freeflowuniverse.herolib.vfs
|
|
import freeflowuniverse.herolib.circles.dbs.core
|
|
|
|
// new creates a new mail VFS instance
|
|
pub fn new(mail_db &core.MailDB) !vfs.VFSImplementation {
|
|
return new_mail_vfs(mail_db)!
|
|
}
|