mirror of
https://github.com/lovelaze/nebula-sync.git
synced 2025-11-05 18:29:19 +01:00
7 lines
73 B
Go
7 lines
73 B
Go
package sync
|
|
|
|
type Callback interface {
|
|
OnSuccess()
|
|
OnFailure(error)
|
|
}
|