add app.go

This commit is contained in:
matina 2026-03-27 00:16:09 -07:00
parent 9bc29c4b21
commit 461540c63d
1 changed files with 8 additions and 0 deletions

8
donateApp/app.go Normal file
View File

@ -0,0 +1,8 @@
package doanteApp
import "net/http"
type Application struct {
Config Config
HTTPServer *http.Server
}