@sync-in/server
Version:
The secure, open-source platform for file storage, sharing, collaboration, and sync
18 lines (17 loc) • 585 B
JavaScript
/*
* Copyright (C) 2012-2025 Johan Legrand <johan.legrand@sync-in.com>
* This file is part of Sync-in | The open source file sync and share solution
* See the LICENSE file for licensing details
*/ "use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
const _usersgroups = require("./usersgroups");
async function main() {
await (0, _usersgroups.usersAndGroups)();
console.log(`${_usersgroups.usersAndGroups.name} Seed done`);
}
if (require.main === module) {
main().then(()=>console.log('All seeds done'));
}
//# sourceMappingURL=main.js.map