Skip to content

Commit 4e0faa5

Browse files
authored
fix: update readme with new urls and velum changes
1 parent f66e0a0 commit 4e0faa5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Velum-Sail
22

3-
Velum-Sail is a command handler for [Velum](https://github.com/Chromosomologist/velum), which in turn is a wrapper for the [Eludris](https://eludris.pages.dev/#/) API. It expands on velum by adding shell-like text-based commands, a command handler that can hook into a `velum.GatewayBot`, and extensions to keep your files organised (coming soon<sup>TM</sup>).
3+
Velum-Sail is a command handler for [Velum](https://github.com/eludris-community/velum), which in turn is a wrapper for the [Eludris](https://eludris.pages.dev/#/) API. It expands on velum by adding shell-like text-based commands, a command handler that can hook into a `velum.GatewayClient`, and extensions to keep your files organised (coming soon<sup>TM</sup>).
44

55
Please keep in mind that this library is still in its infancy, and some much needed features such as documentation are coming in the nearTM future.
66

@@ -11,7 +11,7 @@ Please keep in mind that this library is still in its infancy, and some much nee
1111

1212
To install the library, currently the only option is to install it off of this very github page.
1313
```
14-
python3 -m pip install -U git+https://github.com/Chromosomologist/velum-sail
14+
python3 -m pip install -U git+https://github.com/eludris-community/velum-sail
1515
```
1616

1717

@@ -25,7 +25,7 @@ import velum
2525
import sail
2626

2727

28-
bot = velum.GatewayBot()
28+
bot = velum.GatewayClient()
2929
manager = sail.CommandManager.with_prefix("!")
3030
manager.bind_to_app(bot)
3131

@@ -38,4 +38,4 @@ async def my_command(ctx: sail.Context, x: typing.List[bool]) -> None:
3838
asyncio.run(bot.start())
3939
```
4040

41-
For more in-depth examples, please see the [examples directory](https://github.com/Chromosomologist/velum-sail/tree/master/examples).
41+
For more in-depth examples, please see the [examples directory](https://github.com/eludris-community/velum-sail/tree/master/examples).

0 commit comments

Comments
 (0)