Versions in this module Expand all Collapse all v1 v1.0.0 Mar 25, 2026 Changes in this version + type Link struct + Bandwidth string + From string + Latency string + To string + type Model struct + Links []Link + Name string + Nodes []Node + func NewModel(name string) *Model + func (m *Model) AddLink(from, to, bw, lat string) + func (m *Model) AddNode(id, typ string, protocols []string) + func (m *Model) Describe() string + func (m *Model) ToMermaid() string + func (m *Model) WhatIf(param, value string) string + type Node struct + ID string + Protocols []string + Type string