9 lines
121 B
Go
9 lines
121 B
Go
![]() |
package internal
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
type IParts interface {
|
||
|
Service(ctx context.Context)
|
||
|
Server(ctx context.Context)
|
||
|
}
|