/*
 * @author lsy
 * @date   2020/6/4
 **/
class SingleNotify {
  static SingleNotify _notify;

  static SingleNotify instance() {
    if (_notify == null) {
      _notify = SingleNotify._();
    }
    return _notify;
  }

  SingleNotify._() {}
}