mirror of
https://github.com/wahyd4/crawlab.git
synced 2026-08-12 06:35:53 +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
|
|
}
|