global.go 247 B

12345678910111213141516
  1. package executor
  2. import (
  3. "context"
  4. fw "git.buran.team/main/fairwind"
  5. dockerpkg "git.buran.team/main/cep/docker"
  6. )
  7. type Global struct {
  8. Ctx context.Context
  9. Log *fw.Log
  10. Docker *dockerpkg.Docker
  11. Registry *dockerpkg.Registry
  12. }