chore: drop old unlinked file
Some checks failed
Test / build (map[name:stable]) (push) Successful in 2m0s
Release Please / Release-plz (push) Failing after 17s
Test / build (map[name:nightly]) (push) Successful in 2m23s

This commit is contained in:
Paul Campbell 2024-12-14 17:27:44 +00:00
parent b63500fc75
commit ae9fff4249

View file

@ -1,22 +0,0 @@
//
// use color_eyre::Result;
// use kxio::net::Net;
// pub async fn get_board(
// auth: &TrelloAuth,
// board_id: &TrelloBoardId,
// net: &Net,
// ) -> Result<TrelloBoard> {
// let board = net
// .get(url(f!(
// "/boards/{}/?fields=name&lists=all&list_fields=all&cards=all&card_fields=all",
// **board_id
// )))
// .headers(auth.into())
// .send()
// .await?
// .json()
// .await?;
// Ok(board)
// }