finclip-app-manager/domain/domain.go

27 lines
982 B
Go
Raw Normal View History

2023-10-31 14:07:26 +08:00
package domain
import (
"context"
"finclip-app-manager/domain/script"
"fmt"
)
/**
* DDD: domain
*
* domain
* :
* (Entities)
* (Value Objects):
* (Domain Services):
* /(Aggregates,Aggregate Roots): rootboundary
* (Factories):
* (Repository):
**/
func Start() {
fmt.Printf("script start...\n")
ctx := context.Background()
go script.NewAutoReviewApp().ReviewApps(ctx)
}