Machines app

This commit is contained in:
Eden Kirin
2024-01-13 14:21:29 +01:00
parent 9dbbb21161
commit dd62931b16
12 changed files with 350 additions and 0 deletions

5
machines/app/api/dto.go Normal file
View File

@ -0,0 +1,5 @@
package api
type PingDto struct {
Message string `json:"message"`
}