Skip to content

Commit

Permalink
rename simple to quick-start
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielLiu1123 committed Nov 1, 2023
1 parent 8810816 commit 0a5c55a
Show file tree
Hide file tree
Showing 12 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public class SimpleApp extends SimpleServiceGrpc.SimpleServiceImplBase {
}
```

See the [example](examples/simple) project。
See the [example](examples/quick-start) project。

## Version

Expand Down
2 changes: 1 addition & 1 deletion docs/en-us/guide/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,4 +119,4 @@ public class FooServiceImpl extends FooServiceGrpc.FooServiceImplBase {
}
```
For more details, please refer to the [example](https://github.com/DanielLiu1123/grpc-starter/tree/main/examples/simple).
For more details, please refer to the [example](https://github.com/DanielLiu1123/grpc-starter/tree/main/examples/quick-start).
2 changes: 1 addition & 1 deletion docs/zh-cn/guide/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,4 +120,4 @@ public class FooServiceImpl extends FooServiceGrpc.FooServiceImplBase {
}
```

详情查看 [example](https://github.com/DanielLiu1123/grpc-starter/tree/main/examples/simple)。
详情查看 [example](https://github.com/DanielLiu1123/grpc-starter/tree/main/examples/quick-start)。
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
*/
@SpringBootApplication
@EnableGrpcClients({"com.freemanan", "io.grpc"})
public class SimpleApp implements ApplicationRunner {
public class QuickStartApp implements ApplicationRunner {

public static void main(String[] args) {
SpringApplication.run(SimpleApp.class, args);
SpringApplication.run(QuickStartApp.class, args);
}

@Autowired
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import org.springframework.boot.test.context.SpringBootTest;

@SpringBootTest
class SimpleAppTest {
class QuickStartAppTest {

@InProcessName
String name;
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ include(":examples:json-transcoder:webflux")
include(":examples:json-transcoder:webmvc")
include(":examples:metrics")
include(":examples:proto-validate")
include(":examples:simple")
include(":examples:quick-start")
include(":examples:tls")
include(":examples:tracing")
include(":examples:user:user-api")
Expand Down

0 comments on commit 0a5c55a

Please sign in to comment.