mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-14 20:41:15 +08:00
8 lines
120 B
Go
8 lines
120 B
Go
package system
|
|
|
|
import "context"
|
|
|
|
type IExportModule[T any] interface {
|
|
ExportAll(ctx context.Context) ([]*T, error)
|
|
}
|