package manager type Producer interface { Init() error Publish(topic string, msg []byte) error CreateTopicIfNotExists(topic string) error }