DEVELOPMENT ENVIRONMENT

~liljamo/emerwen

ref: 06ffd5a5e2ea1a4fbc46bf91352145e31d379d7e emerwen/emerwen-protocol/src/lib.rs -rw-r--r-- 480 bytes
06ffd5a5Jonni Liljamo feat: move proto files to root, rename services 9 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Copyright (C) 2024 Jonni Liljamo <jonni@liljamo.com>
 *
 * This file is licensed under GPL-3.0-or-later, see NOTICE and LICENSE for
 * more information.
 */

tonic::include_proto!("mod");

use emerwen::shared::target::{Method, MethodGet, MethodPing};

impl From<MethodPing> for Method {
    fn from(value: MethodPing) -> Self {
        Method::Ping(value)
    }
}

impl From<MethodGet> for Method {
    fn from(value: MethodGet) -> Self {
        Method::Get(value)
    }
}