refactor: rename files into common naming, rename GetId to NextId, document function

This commit is contained in:
2025-08-01 16:42:46 -05:00
parent 55a390e69c
commit 7081d06001
9 changed files with 7 additions and 5 deletions

View File

@@ -45,8 +45,8 @@ type BaseServiceRequest struct {
}
func NewBaseServiceRequest(entityId string) BaseServiceRequest {
id := internal.GetId()
bsr := BaseServiceRequest{
id := internal.NextId()
Id: id,
RequestType: "call_service",
}