Skip to content

Commit

Permalink
adds missing property
Browse files Browse the repository at this point in the history
  • Loading branch information
jesperancinha committed Nov 29, 2024
1 parent b9f35e3 commit 623a80a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include ../../../../Makefile.mk
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

import com.fasterxml.jackson.annotation.JsonProperty;

public record Components(@JsonProperty("db") DataBaseF27 db,
public record Components(
@JsonProperty("ssl") Object ssl,
@JsonProperty("db") DataBaseF27 db,
@JsonProperty("diskSpace") DiskSpace diskSpace,
@JsonProperty("flash27") Flash27 flash27,
@JsonProperty("ping") Ping ping) {
Expand Down

0 comments on commit 623a80a

Please sign in to comment.