| 8 | import java.util.List; |
| 9 | |
| 10 | @Service |
| 11 | public interface KeysService { |
| 12 | Keys selectKeys(Integer id); |
| 13 | |
| 14 | List<Keys> getStorageName(); |
| 15 | |
| 16 | List<Keys> getStorage(); |
| 17 | |
| 18 | Msg updateKey(Keys key); |
| 19 | |
| 20 | List<Keys> getKeys(); |
| 21 | } |
no outgoing calls
no test coverage detected