Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
tyt2y3 committed Oct 19, 2023
1 parent 68c7470 commit e9acabd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/rocket_okapi_example/api/src/okapi_example.rs
Original file line number Diff line number Diff line change
@@ -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;

Expand Down
2 changes: 1 addition & 1 deletion examples/rocket_okapi_example/api/src/pool.rs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 1 addition & 1 deletion examples/rocket_okapi_example/service/tests/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit e9acabd

Please sign in to comment.