mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-26 17:49:15 +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
|
|
}
|