package api

type LoginResponse struct {
	SessionToken string `json:"sessionToken"`
	Err          error  `json:"err"`
}
