new framework

This commit is contained in:
2026-05-12 22:36:19 +02:00
parent d92768dd23
commit 9d52a2e2c6
29 changed files with 1240 additions and 400 deletions

View File

@@ -0,0 +1,8 @@
# frozen_string_literal: true
class LastCallersService
def initialize(repo) = @repo = repo
def record(username, session_id) = @repo.record(username, session_id)
def recent(n = 10) = @repo.recent(n)
end