feat: remove lazy_static and make tables.rs async

This commit is contained in:
Elijah McMorris 2024-09-24 14:28:15 -07:00
parent dbd039eebf
commit 5fa50cf69f
Signed by: NexVeridian
SSH key fingerprint: SHA256:bsA1SKZxuEcEVHAy3gY1HUeM5ykRJl0U0kQHQn0hMg8
8 changed files with 142 additions and 83 deletions

View file

@ -64,7 +64,7 @@ Env string CREATE_VERSION must be in the enum CREATE_VERSION
pub enum CreateVersion {
#[default]
Bulk,
/// must create a filter.surql file in the data directory
/// must create a `filter.surql` file in the data directory
BulkFilter,
}
```