Documentation
1
2
3
4
5
6
7
use vn::Vndb;

#[tokio::test]
async fn get_schema() {
  let schema = Vndb::new().get().schema().await;
  assert!(schema.is_ok());
}