This commit is contained in:
Chris Tsang 2023-10-19 19:51:22 +01:00
parent 68c7470ac9
commit e9acabd847
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
use dto::dto;
use rocket::serde::json::Json;
use rocket_example_service::{Mutation, Query};
use rocket_okapi_example_service::{Mutation, Query};
use sea_orm_rocket::Connection;

View File

@ -1,4 +1,4 @@
use rocket_example_service::sea_orm;
use rocket_okapi_example_service::sea_orm;
use async_trait::async_trait;
use sea_orm::ConnectOptions;

View File

@ -2,7 +2,7 @@ mod prepare;
use entity::post;
use prepare::prepare_mock_db;
use rocket_example_service::{Mutation, Query};
use rocket_okapi_example_service::{Mutation, Query};
#[tokio::test]
async fn main() {