hyperlane_plugin 9.4.1

A powerful and extensible plugin system for the hyperlane framework, providing modularity and customization capabilities.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod database;
pub mod env;
pub mod logger;
pub mod mysql;
pub mod postgresql;
pub mod process;
pub mod redis;

use hyperlane_resources::*;

use {
    hyperlane::*,
    hyperlane_utils::{log::*, *},
    once_cell::sync::Lazy,
    sea_orm::{ConnectionTrait, Database, DatabaseBackend, DatabaseConnection, DbErr, Statement},
};