Actix message passing to the same actor
I am still working on my API and I did run into the issue where I wanted my handlers do just one thing
use actix::prelude::*;
use actix_web::*;
use diesel;
use diesel::prelude::*;
use validator::{Validate};
use schema;
use user;
use user::models;
us...