|
| 1 | +// Copyright Contributors to the OpenCue Project |
| 2 | +// |
| 3 | +// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except |
| 4 | +// in compliance with the License. You may obtain a copy of the License at |
| 5 | +// |
| 6 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | +// |
| 8 | +// Unless required by applicable law or agreed to in writing, software distributed under the License |
| 9 | +// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
| 10 | +// or implied. See the License for the specific language governing permissions and limitations under |
| 11 | +// the License. |
| 12 | + |
1 | 13 | use std::net::{Ipv4Addr, SocketAddr}; |
2 | 14 |
|
3 | 15 | use miette::IntoDiagnostic; |
4 | 16 | use opencue_proto::report::rqd_report_interface_server::RqdReportInterfaceServer; |
5 | 17 | use opencue_proto::report::{ |
6 | | - RqdReportRqdStartupRequest, RqdReportRqdStartupResponse, |
7 | | - RqdReportRunningFrameCompletionRequest, RqdReportRunningFrameCompletionResponse, |
8 | | - RqdReportStatusRequest, RqdReportStatusResponse, |
9 | | - rqd_report_interface_server::RqdReportInterface, |
| 18 | + rqd_report_interface_server::RqdReportInterface, RqdReportRqdStartupRequest, |
| 19 | + RqdReportRqdStartupResponse, RqdReportRunningFrameCompletionRequest, |
| 20 | + RqdReportRunningFrameCompletionResponse, RqdReportStatusRequest, RqdReportStatusResponse, |
10 | 21 | }; |
11 | 22 | use tonic::transport::Server; |
12 | | -use tonic::{Request, Response, Status, async_trait}; |
| 23 | +use tonic::{async_trait, Request, Response, Status}; |
13 | 24 |
|
14 | 25 | pub struct ReportServant {} |
15 | 26 | #[async_trait] |
|
0 commit comments