Files
backstage/plugins/inventory-backend
Fredrik Adelöw 92feb76252 Make the inventory backend standalone runnable
And also make a proposed split of how the loggers are handled.

Now logs look like

```
{
  "type": "incomingRequest",
  "service": "backstage",
  "timestamp": "2020-04-30T14:29:04.002Z",
  "message": "...",
  "level": "info"
}
```

for requests, and then if the plugin logs something properly

```
{
  "type": "plugin",
  "service": "backstage",
  "plugin": "inventory",
  "timestamp": "2020-04-30T14:29:04.002Z",
  "message": "...",
  "level": "info"
}
```
2020-05-01 21:59:20 +02:00
..
2020-04-27 10:01:57 +02:00

Inventory Backend

WORK IN PROGRESS

This is the backend part of the default inventory plugin.

It responds to requests from the frontend part, and fulfills them by delegating to your existing inventory related services.