mirror of
https://github.com/muety/wakapi.git
synced 2025-12-06 06:22:41 -08:00
16 lines
256 B
Go
16 lines
256 B
Go
package view
|
|
|
|
type SetupViewModel struct {
|
|
SharedLoggedInViewModel
|
|
}
|
|
|
|
func (s *SetupViewModel) WithSuccess(m string) *SetupViewModel {
|
|
s.SetSuccess(m)
|
|
return s
|
|
}
|
|
|
|
func (s *SetupViewModel) WithError(m string) *SetupViewModel {
|
|
s.SetError(m)
|
|
return s
|
|
}
|