Skip to content

Commit

Permalink
Move Status into *.models package
Browse files Browse the repository at this point in the history
  • Loading branch information
miguno committed Sep 8, 2024
1 parent 7092f38 commit 968549f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 0 additions & 3 deletions src/main/java/com/miguno/javadockerbuild/Status.java

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.miguno.javadockerbuild.controllers;

import com.miguno.javadockerbuild.Status;
import com.miguno.javadockerbuild.models.Status;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/com/miguno/javadockerbuild/models/Status.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
package com.miguno.javadockerbuild.models;

public record Status(String status) {}

0 comments on commit 968549f

Please sign in to comment.