Skip to content

Instantly share code, notes, and snippets.

@arthurgubaidullin
Created August 22, 2025 15:14
Show Gist options
  • Select an option

  • Save arthurgubaidullin/edb1142b2f47821fb319f7702e44cb89 to your computer and use it in GitHub Desktop.

Select an option

Save arthurgubaidullin/edb1142b2f47821fb319f7702e44cb89 to your computer and use it in GitHub Desktop.

Subscription

stateDiagram-v2
    [*] --> Inactive
    Inactive --> Active: Activate
    Active --> Inactive: Cycle ended

    state Active {
        [*] --> Running
        Running --> Canceled: Cancel
        Canceled --> Running: Reactivate
        Running --> Running: Next cycle
    }
Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment