Something went wrong. Try again.
This repository has no description
Something went wrong. Try again.
userlist_sync run_sync.rb
251 B · 12 lines
Ruby
at master
12345678910111213#!/usr/bin/env ruby
require 'bundler/setup'require_relative 'lib/sync'
sync = Sync.new
# close the connection cleanly on Ctrl+Ctrap("SIGINT") { sync.log "Stopping..."; sync.stop }trap("SIGTERM") { sync.log "Stopping..."; sync.stop }
sync.start