mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-06-13 17:46:28 +08:00
12 lines
187 B
Ruby
12 lines
187 B
Ruby
module RestKit
|
|
module Network
|
|
class Timeout < Sinatra::Base
|
|
|
|
get '/disk/cached' do
|
|
"This Should Get Cached For 5 Seconds"
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|