refactor: remove dead code
Some checks failed
Test / build (map[name:nightly]) (push) Successful in 2m1s
Test / build (map[name:stable]) (push) Successful in 2m12s
Release Please / Release-plz (push) Failing after 19s

This commit is contained in:
Paul Campbell 2024-12-19 09:04:23 +00:00
parent 3befecd645
commit 8f3035fccc
2 changed files with 0 additions and 13 deletions

View file

@ -23,13 +23,6 @@ mod stack;
#[cfg(test)]
mod tests;
pub(crate) struct DeckClient<'ctx> {
ctx: &'ctx FullCtx,
hostname: &'ctx NextcloudHostname,
username: &'ctx NextcloudUsername,
password: &'ctx NextcloudPassword,
}
#[derive(Parser, Debug)]
pub enum NextcloudCommand {
#[clap(subcommand)]

View file

@ -12,9 +12,3 @@ newtype!(
Ord,
"API Secret token for Trello"
);
#[derive(Debug, Clone)]
pub(crate) struct TrelloAuth<'cfg> {
pub(crate) api_key: &'cfg TrelloApiKey,
pub(crate) api_secret: &'cfg TrelloApiSecret,
}