mirror of
https://github.com/myned/watcher.git
synced 2024-11-01 20:22:38 +00:00
12 lines
322 B
Python
12 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)
|