module Web::Controllers::Posts class Index include Web::Action expose :posts def call(params) @posts = rom.relation(:posts).latest end # Cutting corners like a boss, DI will be added soon def rom ROM.env end end end