webapp-backend 1.0.0

A web application completely written in Rust
1
2
3
4
5
6
7
8
9
10
11
12
//! HTTP message test abstraction

#![cfg(test)]

use actix::prelude::*;

/// The mock database executor actor
pub struct DatabaseExecutorMock;

impl Actor for DatabaseExecutorMock {
    type Context = SyncContext<Self>;
}