aboutsummaryrefslogtreecommitdiff
path: root/content/go/workflow.md
diff options
context:
space:
mode:
Diffstat (limited to 'content/go/workflow.md')
-rw-r--r--content/go/workflow.md19
1 files changed, 15 insertions, 4 deletions
diff --git a/content/go/workflow.md b/content/go/workflow.md
index 9b846bf..3ac4774 100644
--- a/content/go/workflow.md
+++ b/content/go/workflow.md
@@ -7,9 +7,9 @@ gomod = true
outputs = ["html"]
+++
-Simple state machine. Inspired by [Symfony Workflow](https://github.com/symfony/workflow).
+Простой конечный автомат, похожий на [Symfony Workflow](https://github.com/symfony/workflow).
-## Example usage
+## Пример
```go
o := new(ObjectImplementedPlaceer)
@@ -33,7 +33,7 @@ w.GetEnabledTransitions(o) // []Place{"C"}
w.DumpToDot() // See above
```
-## Dump result
+## Дамп в формат dot
```
digraph {
@@ -46,4 +46,15 @@ digraph {
C -> Finish[label="C → Finish"];
D -> Finish[label="D → Finish"];
}
-``` \ No newline at end of file
+```
+
+{{< graph >}}
+flowchart TD
+ Start -->|Start → A| A
+ Start -->|Start → B| B
+ A -->|A → C| C
+ B -->|B → D| D
+ C -->|C → D| D
+ C -->|C → Finish| Finish
+ D -->|D → Finish| Finish
+{{< /graph >}}