mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +01:00
13 lines
128 B
Go
13 lines
128 B
Go
package model
|
|
|
|
type Base struct {
|
|
}
|
|
|
|
func (b *Base) Save() error {
|
|
return nil
|
|
}
|
|
|
|
func (b *Base) Delete() error {
|
|
return nil
|
|
}
|