mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-16 06:51:27 +00:00
10 lines
195 B
Go
10 lines
195 B
Go
package domains
|
|
|
|
import (
|
|
"github.com/emilybache/gildedrose-refactoring-kata/models"
|
|
)
|
|
|
|
type ItemUpdateServiceProvider interface {
|
|
GetUpdateService(item *models.Item) ItemUpdateService
|
|
}
|