Skip to content

Commit e4adad8

Browse files
committed
feat: v3.2.0
1 parent 3f2e2d6 commit e4adad8

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "server-manager"
3-
version = "3.1.3"
3+
version = "3.2.0"
44
edition = "2024"
55
authors = ["ltpp-universe <root@ltpp.vip>"]
66
license = "MIT"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ pub(crate) mod cfg;
22
pub(crate) mod config;
33
pub(crate) mod manager;
44

5-
pub(crate) use manager::constant::*;
5+
pub(crate) use manager::r#const::*;
66
#[allow(unused_imports)]
77
pub(crate) use std::{
88
fs,

src/manager/const.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
pub const RUNNING_AS_DAEMON: &str = "RUNNING_AS_DAEMON";
2+
pub const RUNNING_AS_DAEMON_VALUE: &str = "1";

src/manager/constant.rs

Lines changed: 0 additions & 2 deletions
This file was deleted.

src/manager/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
pub(crate) mod constant;
1+
pub(crate) mod r#const;
22
pub(crate) mod r#impl;
33
pub(crate) mod r#type;

0 commit comments

Comments
 (0)