blob: 39e91b8e0f7b2ad9bde6c4d190997062be92a6a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/**
* Provides a parser for the <a href="https://docs.gtk.org/glib/struct.Variant.html">GVariant</a>
* serialization format.
*
* <p>The {@link eu.mulk.jgvariant.core} package contains the {@link eu.mulk.jgvariant.core.Decoder}
* type. which forms the foundation of this library.
*/
module eu.mulk.jgvariant.core {
requires com.google.errorprone.annotations;
requires org.jetbrains.annotations;
exports eu.mulk.jgvariant.core;
}
|