mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-09-15 14:19:46 +00:00
* added microservices distributed tracing pattern * feat: Implement Microservice pattern: Distributed tracing #2693
10 lines
189 B
Plaintext
10 lines
189 B
Plaintext
@startuml
|
|
!theme vibrant
|
|
package com.iluwatar.microservices-distributed-tracing {
|
|
package "Product Microservice" {
|
|
class ProductController {
|
|
+validateProduct()
|
|
}
|
|
}
|
|
}
|
|
@enduml |