shard-spectator/src/spectator/example.cr

15 lines
234 B
Crystal
Raw Normal View History

require "./source"
2018-08-19 07:15:32 +00:00
module Spectator
abstract class Example
2018-09-11 03:51:14 +00:00
getter context : Context
2018-09-13 03:31:44 +00:00
getter? finished = false
2018-09-11 03:51:14 +00:00
def initialize(@context)
end
2018-09-11 21:57:18 +00:00
abstract def run : Nil
abstract def description : String
2018-08-19 07:15:32 +00:00
end
end