11 lines
186 B
Go
11 lines
186 B
Go
package languages
|
|
|
|
import (
|
|
"context"
|
|
"git.sch9.ru/new_gate/models"
|
|
)
|
|
|
|
type LanguageRepository interface {
|
|
ReadLanguageById(ctx context.Context, id int32) (*models.Language, error)
|
|
}
|