fix
All checks were successful
Build (backend build only) / build (push) Successful in 3m28s

This commit is contained in:
Iron_Felix 2025-12-20 00:17:54 +03:00
parent 53e270015c
commit c58b578023
4 changed files with 47 additions and 94 deletions

View file

@ -18,16 +18,16 @@ import (
// }
type Server struct {
db *sqlc.Queries
ImageServerSocket string
RPCclient *rmq.RPCClient
db *sqlc.Queries
ImageServerURL string
RPCclient *rmq.RPCClient
}
func NewServer(db *sqlc.Queries, ImageServerSocket string, rpcclient *rmq.RPCClient) *Server {
func NewServer(db *sqlc.Queries, ImageServerURL string, rpcclient *rmq.RPCClient) *Server {
return &Server{
db: db,
ImageServerSocket: ImageServerSocket,
RPCclient: rpcclient,
db: db,
ImageServerURL: ImageServerURL,
RPCclient: rpcclient,
}
}