소스 검색

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

불러오는 중...
취소
저장