Merge branch 'lash/purify-more' into lash/purify-max

This commit is contained in:
lash
2025-01-06 08:38:05 +00:00
13 changed files with 604 additions and 20 deletions

View File

@@ -22,8 +22,8 @@ import (
)
var (
logg = logging.NewVanilla()
scriptDir = path.Join("services", "registration")
logg = logging.NewVanilla()
scriptDir = path.Join("services", "registration")
menuSeparator = ": "
)
@@ -36,7 +36,7 @@ type asyncRequestParser struct {
input []byte
}
func (p *asyncRequestParser) GetSessionId(r any) (string, error) {
func (p *asyncRequestParser) GetSessionId(ctx context.Context, r any) (string, error) {
return p.sessionId, nil
}