19 lines
401 B
Java
19 lines
401 B
Java
/**
|
|
* This module contains all packages that are used by Envoy Client and Envoy
|
|
* Server Standalone at the same time.
|
|
*
|
|
* @author Leon Hofmeister
|
|
* @author Maximilian Käfer
|
|
* @author Kai S.K. Engelbart
|
|
* @since Envoy common v0.1-beta
|
|
*/
|
|
module envoy.common {
|
|
|
|
exports envoy.data;
|
|
exports envoy.util;
|
|
exports envoy.exception;
|
|
exports envoy.event;
|
|
|
|
requires transitive java.logging;
|
|
}
|