mirror of
https://github.com/wahyd4/crawlab.git
synced 2026-08-23 03:56:06 +10: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
|
|
}
|