Skip to content

Commit

Permalink
PLUGINS.md: Slightly improve CAPI Legacy/Live doc
Browse files Browse the repository at this point in the history
  • Loading branch information
Athanasius committed Dec 14, 2022
1 parent 281703a commit e2f4f8f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions PLUGINS.md
Original file line number Diff line number Diff line change
Expand Up @@ -970,8 +970,22 @@ def cmdr_data_legacy(data, is_beta):
then you *may* simply:

```python
from companion import SERVER_BETA, SERVER_LEGACY, SERVER_LIVE

def cmdr_data_legacy(data, is_beta):
return cmdr_data(data, is_beta)

def cmdr_data(data, is_beta):
if data.source_host == SERVER_LEGACY:
...
elif data.source_host == SERVER_LIVE:
...
elif data.source_host == SERVER_BETA:
# Would also be indicated by `is_beta == True`
...
else:
# Unknown source galaxy !
...
```

The core 'eddn' plugin might contain some useful hints about how to handle the
Expand Down

0 comments on commit e2f4f8f

Please sign in to comment.