All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.jzdayz.exmaple.ServerTests Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
package io.github.jzdayz.exmaple;

import io.github.jzdayz.server.Server;

public class ServerTests {

    public static class Provider{

        public People getSomething(People a){
            return a;
        }

    }

    public static void main(String[] args) {
        Server server = new Server(10999);
        server.start();
//        RpcRegister.INSTANCE.register(new Provider(),"jzdayz");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy