mirror of
https://github.com/myned/watcher.git
synced 2024-11-01 12:22:38 +00:00
13 lines
322 B
Python
13 lines
322 B
Python
|
import hikari
|
||
|
from miru.ext import nav
|
||
|
|
||
|
|
||
|
class Back(nav.PrevButton):
|
||
|
def __init__(self):
|
||
|
super().__init__(style=hikari.ButtonStyle.SECONDARY, label="⟵", emoji=None)
|
||
|
|
||
|
|
||
|
class Forward(nav.NextButton):
|
||
|
def __init__(self):
|
||
|
super().__init__(style=hikari.ButtonStyle.SECONDARY, label="⟶", emoji=None)
|