Basic login

This commit is contained in:
2019-09-26 15:52:58 +02:00
parent f20d003e2a
commit e2bdaf6603
13 changed files with 514 additions and 12 deletions

View File

@@ -14,9 +14,11 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>.
import { MigrationRepository } from "./migrations";
import { UserRepository } from "./users";
export interface Extensions {
migrations: MigrationRepository;
users: UserRepository;
}
export { MigrationRepository };
export { MigrationRepository, UserRepository };