15 lines
280 B
Go
15 lines
280 B
Go
|
package onboarding
|
||
|
|
||
|
// DefaultParams returns default module parameters.
|
||
|
func DefaultParams() Params {
|
||
|
return Params{
|
||
|
// Set default values here.
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Validate does the sanity check on the params.
|
||
|
func (p Params) Validate() error {
|
||
|
// Sanity check goes here.
|
||
|
return nil
|
||
|
}
|