Sha256: baf8fc11337347118fb4f16ee57de5bf723b9967d79c88136d729765e3d81d46
Contents?: true
Size: 387 Bytes
Versions: 82
Compression:
Stored size: 387 Bytes
Contents
# typed: strong # N.B. You imagine the wizards update the point magically somehow? # Nope, there is a "goblin" that takes their "give points" request and do it # behind the scene. class AwardHousePointHourglasses < ApplicationJob extend T::Sig sig { params(student: Wizard, point: Integer).void } def perform(student:, point:) # TODO: award point to student's house end end
Version data entries
82 entries across 24 versions & 1 rubygems