Move to SQLite (#13)

This commit is contained in:
Natsu Kagami 2021-06-19 22:36:17 +09:00 committed by GitHub
parent 750ddb7762
commit 1799b70bc1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
50 changed files with 2122 additions and 394 deletions

View file

@ -10,8 +10,8 @@ use serenity::{
use std::convert::TryFrom;
use tokio::time as tokio_time;
const ARROW_RIGHT: &'static str = "➡️";
const ARROW_LEFT: &'static str = "⬅️";
const ARROW_RIGHT: &str = "➡️";
const ARROW_LEFT: &str = "⬅️";
/// A trait that provides the implementation of a paginator.
#[async_trait::async_trait]