Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion content/en/docs/volo/cli/getting-started/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ At this point, our entire catalog is structured as follows:
├── Cargo.toml
├── idl
│ └── rpc_example.thrift
├── rust-toolchain.toml
├── src
│ ├── bin
│ │ └── server.rs
Expand Down
1 change: 0 additions & 1 deletion content/en/docs/volo/guide/metadata.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ use metainfo::{Backward, Forward};

pub struct S;

#[volo::async_trait]
impl volo_gen::volo::example::ItemService for S {
async fn get_item(
&self,
Expand Down
1 change: 0 additions & 1 deletion content/en/docs/volo/volo-grpc/getting-started/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ At this point, our entire directory structure looks like this:
├── Cargo.toml
├── idl
│ └── volo_example.proto
├── rust-toolchain.toml
├── src
│ ├── bin
│ │ └── server.rs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ At this point, our entire directory structure looks like this:
├── Cargo.toml
├── idl
│ └── volo_example.thrift
├── rust-toolchain.toml
├── src
│ ├── bin
│ │ └── server.rs
Expand Down
1 change: 0 additions & 1 deletion content/zh/docs/volo/cli/getting-started/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ service ItemService {
├── Cargo.toml
├── idl
│ └── rpc_example.thrift
├── rust-toolchain.toml
├── src
│ ├── bin
│ │ └── server.rs
Expand Down
1 change: 0 additions & 1 deletion content/zh/docs/volo/guide/metadata.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ use metainfo::{Backward, Forward};

pub struct S;

#[volo::async_trait]
impl volo_gen::volo::example::ItemService for S {
async fn get_item(
&self,
Expand Down
1 change: 0 additions & 1 deletion content/zh/docs/volo/volo-grpc/getting-started/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ volo idl add -g git@github.com:org/repo.git -r main /path/to/your/idl.proto
├── Cargo.toml
├── idl
│ └── volo_example.proto
├── rust-toolchain.toml
├── src
│ ├── bin
│ │ └── server.rs
Expand Down
2 changes: 0 additions & 2 deletions content/zh/docs/volo/volo-thrift/getting-started/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ volo idl add -g git@github.com:org/repo.git -r main /path/to/your/idl.thrift
├── Cargo.toml
├── idl
│ └── volo_example.thrift
├── rust-toolchain.toml
├── src
│ ├── bin
│ │ └── server.rs
Expand All @@ -109,7 +108,6 @@ volo idl add -g git@github.com:org/repo.git -r main /path/to/your/idl.thrift
```rust
pub struct S;

#[volo::async_trait]
impl volo_gen::volo::example::ItemService for S {
// 这部分是我们需要增加的代码
async fn get_item(
Expand Down
Loading