15 lines
235 B
Go
15 lines
235 B
Go
|
|
package platform
|
||
|
|
|
||
|
|
import (
|
||
|
|
"context"
|
||
|
|
|
||
|
|
"github.com/Gleipnir-Technology/nidus-sync/platform/background"
|
||
|
|
)
|
||
|
|
|
||
|
|
func BackgroundStart(ctx context.Context) {
|
||
|
|
background.Start(ctx)
|
||
|
|
}
|
||
|
|
func BackgroundWaitForExit() {
|
||
|
|
background.WaitForExit()
|
||
|
|
}
|