X Tutup
Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ public static ExposedPort tcp(int port) {
return new ExposedPort("tcp", port);
}

public static ExposedPort udp(int port) {
return new ExposedPort("udp", port);
}

public static ExposedPort parse(String serialized) {
try {
String[] parts = serialized.split("/");
Expand Down
X Tutup