Hunter0x7c7
2023-08-13 2975a1e0c5cbfc0aa88bc3996c3c231e6d73da21
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);
}