9 lines
121 B
Go
9 lines
121 B
Go
|
package components
|
||
|
|
||
|
type ContentGraph struct {
|
||
|
Graph string // pie, bar
|
||
|
Labels string
|
||
|
Values string
|
||
|
Alt string
|
||
|
}
|