hades/internal/parts.go

9 lines
121 B
Go
Raw Normal View History

2024-09-08 19:08:44 +02:00
package internal
import "context"
type IParts interface {
Service(ctx context.Context)
Server(ctx context.Context)
}