Przeglądaj źródła

Made the Ring serializable to JSON

master
Archivist 6 lat temu
rodzic
commit
e37603b5a5
1 zmienionych plików z 7 dodań i 3 usunięć
  1. +7
    -3
      src/crystal-scatter/ring.cr

+ 7
- 3
src/crystal-scatter/ring.cr Wyświetl plik

@ -1,9 +1,13 @@
require "json"
module Crystal::Scatter
class Slice
property s_begin : UInt64
property s_end : UInt64
property url : String
JSON.mapping(
s_begin: UInt64,
s_end: UInt64,
url: String
)
def initialize(@s_begin,@s_end,@url)
end

Ładowanie…
Anuluj
Zapisz