Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions internal/roadmap/internal/domain/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,18 @@ func (r Roadmap) Bizs() ([]string, []int64) {
}

type Node struct {
ID int64
Biz
Rid int64
Attrs string
}

type Edge struct {
Id int64
Src Node
Dst Node
Id int64
Type string
Attrs string
Src Node
Dst Node
}

type Biz struct {
Expand Down
Loading
Loading