Skip to content

Commit

Permalink
style: next-line declaration of listContainers() function
Browse files Browse the repository at this point in the history
  • Loading branch information
98ping committed Nov 9, 2023
1 parent 257f67e commit e9945c0
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ import net.revive.framework.deployment.DeploymentService
*/
object DockerContainerController {

fun listContainers(): List<Container> = DeploymentService.dockerClient.listContainersCmd().exec()
fun listContainers(): List<Container> =
DeploymentService.dockerClient.listContainersCmd().exec()

fun getContainerLogs(containerId: String) : MutableList<String> {
val logs = mutableListOf<String>()
Expand Down

0 comments on commit e9945c0

Please sign in to comment.