Command.kt 90 B

12345
  1. package com.ted.weather.domain.commands
  2. interface Command<out T> {
  3. fun execute(): T
  4. }