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