Hunter0x7c7
2023-08-11 c32a31eca2cef739862aee0db4171800c6b72af7
1
2
3
4
5
6
7
8
9
10
package com.github.hunter0x7c7.sync.model.interfaces;
/*
 * @Auther: Hunter
 * @Date: 2022/12/02/18:04
 * @Description:
 */
 
public interface Callback<T> {
    void onCall(T var1);
}