com.firefly.example.reactive.coffee.store.service.UserService Maven / Gradle / Ivy
package com.firefly.example.reactive.coffee.store.service;
import com.firefly.example.reactive.coffee.store.model.User;
import reactor.core.publisher.Mono;
/**
* @author Pengtao Qiu
*/
public interface UserService {
Mono getByName(String name);
}