
* refact: generalized back end structs * refact: fixed front end type, removed dead code * removed test image folder * refact: removed dead structs
8 lines
176 B
Go
8 lines
176 B
Go
package entities
|
|
|
|
type Session struct {
|
|
Project Project `json:"project"`
|
|
Organization Organization `json:"organization"`
|
|
User User `json:"user"`
|
|
}
|