瀏覽代碼

Made the Ring serializable to JSON

master
Archivist 6 年之前
父節點
當前提交
e37603b5a5
共有 1 個檔案被更改,包括 7 行新增3 行删除
  1. +7
    -3
      src/crystal-scatter/ring.cr

+ 7
- 3
src/crystal-scatter/ring.cr 查看文件

@ -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

Loading…
取消
儲存