chore: remove dead code: trello::url()
Some checks failed
Test / build (map[name:nightly]) (push) Successful in 2m38s
Test / build (map[name:stable]) (push) Successful in 2m24s
Release Please / Release-plz (push) Failing after 19s

This commit is contained in:
Paul Campbell 2024-12-15 17:31:35 +00:00
parent e45c5a6ef8
commit 1c82ed3a80

View file

@ -3,7 +3,6 @@ use clap::Parser;
use crate::{ use crate::{
execute::Execute, execute::Execute,
f,
trello::{ trello::{
attachment::TrelloAttachmentCommand, attachment::TrelloAttachmentCommand,
board::TrelloBoardCommand, board::TrelloBoardCommand,
@ -29,12 +28,6 @@ pub(crate) mod stack;
#[cfg(test)] #[cfg(test)]
mod tests; mod tests;
pub(crate) fn url(path: impl Into<String>) -> String {
let path = path.into();
assert!(path.starts_with("/"));
f!("https://api.trello.com/1{path}")
}
#[derive(Parser, Debug)] #[derive(Parser, Debug)]
pub(crate) enum TrelloCommand { pub(crate) enum TrelloCommand {
#[clap(subcommand)] #[clap(subcommand)]