documents.go 102 B

1234567
  1. package documents
  2. type Generator interface {
  3. Run(jobId uint)
  4. }
  5. var Generators map[string]Generator