gitlab.com/creichlin/pentaconta@v0.1.1-0.20170921154330-ffd669064217/runtime/runtime.go (about)

     1  package runtime
     2  
     3  import (
     4  	"gitlab.com/creichlin/pentaconta/logger"
     5  )
     6  
     7  type Runtime struct {
     8  	Logs        logger.Logger
     9  	Executors   map[string]*Service
    10  	FSListeners map[string]*FSTrigger
    11  }