bitget_spot_export_test.rs 587 B

123456789101112131415161718
  1. // mod export_excel_test;
  2. //
  3. // use tracing::{instrument, trace};
  4. // use derive::export_excel::ExportEnum;
  5. // use crate::export_excel_test::test_new_export;
  6. //
  7. //
  8. // const SYMBOL: &str = "LOOM_USDT";
  9. // // 测试获取Exchange实体
  10. // #[tokio::test]
  11. // #[instrument(level = "TRACE")]
  12. // async fn test_get_self_exchange() {
  13. // global::log_utils::init_log_with_trace();
  14. //
  15. // let mut export = test_new_export(ExportEnum::BitgetSpot).await;
  16. // let export_trades = export.export_trades("bitget_spot",SYMBOL.to_string(), 0, 0, 100).await;
  17. // trace!(?export_trades);
  18. // }