package com.plannaplan.services; import com.plannaplan.abstracts.EventWatcher; import com.plannaplan.repositories.UserRepository; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @Service public class UserService extends EventWatcher { @Autowired private UserRepository repo; public UserService() { super(); } }