Add customer API stub

This commit is contained in:
2025-12-28 11:24:11 +01:00
parent 19ad13843c
commit ffffa1254e
13 changed files with 137 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
db = db.getSiblingDB("customer-db");
db.createCollection("systems");
db.createCollection("games");
db.createUser({
user: "user",
pwd: "psk358xpg",
roles: [
{ role: "readWrite", db: "customer-db" }
]
});