Files
bbs-server/lib/domain/service/games_service.rb
2026-05-13 22:35:24 +02:00

8 lines
117 B
Ruby

# frozen_string_literal: true
class GamesService
def initialize(repo) = @repo = repo
def all = @repo.fetch
end