generated from PlexSheep/rs-base
automatic cargo CI changes
This commit is contained in:
parent
2568d96ac3
commit
48008c4d7a
|
@ -1,6 +1,6 @@
|
|||
pub mod changelog;
|
||||
pub mod publish;
|
||||
pub mod serverapi;
|
||||
pub mod release;
|
||||
pub mod config;
|
||||
pub mod error;
|
||||
pub mod publish;
|
||||
pub mod release;
|
||||
pub mod serverapi;
|
||||
|
|
|
@ -4,9 +4,9 @@ use autocrate::{
|
|||
cli::{Cli, Commands},
|
||||
Config,
|
||||
},
|
||||
release::release,
|
||||
publish::publish,
|
||||
error::*,
|
||||
publish::publish,
|
||||
release::release,
|
||||
};
|
||||
|
||||
#[tokio::main]
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
use crate::{config::Config, error::*};
|
||||
pub fn publish(cfg: &Config) -> Result<()> {
|
||||
pub fn publish(_cfg: &Config) -> Result<()> {
|
||||
todo!()
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use crate::{config::Config, error::*};
|
||||
|
||||
pub fn release(cfg: &Config) -> Result<()> {
|
||||
pub fn release(_cfg: &Config) -> Result<()> {
|
||||
todo!()
|
||||
}
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
|
Loading…
Reference in New Issue