func -> consts

This commit is contained in:
shenjack-5600u 2025-04-09 00:12:09 +08:00
parent 3435b8c0fb
commit 8b5275608b
Signed by: shenjack
GPG Key ID: FDF9864E11C7E79F
3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ use tracing::{event, info, warn, Level};
use crate::data_struct::{ica, tailchat}; use crate::data_struct::{ica, tailchat};
use crate::error::PyPluginError; use crate::error::PyPluginError;
use crate::py::func::events_func; use crate::py::consts::events_func;
use crate::py::{class, PyPlugin, PyStatus}; use crate::py::{class, PyPlugin, PyStatus};
use crate::MainStatus; use crate::MainStatus;

View File

@ -1,7 +1,7 @@
pub mod call; pub mod call;
pub mod class; pub mod class;
pub mod config; pub mod config;
pub mod func; pub mod consts;
use std::ffi::CString; use std::ffi::CString;
use std::fmt::Display; use std::fmt::Display;
@ -19,7 +19,7 @@ use tracing::{event, span, warn, Level};
use crate::error::PyPluginError; use crate::error::PyPluginError;
use crate::MainStatus; use crate::MainStatus;
use func::config_func; use consts::config_func;
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
pub struct PyStatus { pub struct PyStatus {