mirror of
https://gitea.invidious.io/iv-org/shard-ameba.git
synced 2024-08-15 00:53:29 +00:00
11 lines
184 B
Crystal
11 lines
184 B
Crystal
|
module Ameba
|
||
|
class Source
|
||
|
getter lines : Array(String)
|
||
|
getter errors = [] of String
|
||
|
|
||
|
def initialize(content : String)
|
||
|
@lines = content.split "\n"
|
||
|
end
|
||
|
end
|
||
|
end
|