18 lines
400 B
Java
18 lines
400 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;
|
||
|
}
|