This commit is contained in:
2026-05-13 22:35:24 +02:00
parent 1ae4734e81
commit c2e6466022
18 changed files with 311 additions and 317 deletions

View File

@@ -0,0 +1,9 @@
# frozen_string_literal: true
class WikiService
def initialize(repo) = @repo = repo
def list(category) = @repo.list(category)
def content(page_id) = @repo.content(page_id)
def page_url(locale, path) = @repo.page_url(locale, path)
end