/
uzer_007
/
Rixea
Обзор
Документация
Войти
/
uzer_007
/
Rixea
Код
Запросы
0
Задачи
Вики
Пакеты
5
Релизы
2
CI/CD
Аналитика
Безопасность
master
services/auth/source/db/assert_interface_test.go
20 строк
562 B
uzer_007
feat: первая версия Rixea
02 авг 2026, 22:16
02 авг 2026, 22:16
d4f7504
Код
Авторство
О чём код?
// Copyright 2026 Uzer_007. All rights reserved. // SPDX-License-Identifier: MIT package db_test import ( auth_model "gitverse.ru/uzer_007/Rixea/models/auth" "gitverse.ru/uzer_007/Rixea/services/auth" "gitverse.ru/uzer_007/Rixea/services/auth/source/db" ) // This test file exists to assert that our Source exposes the interfaces that we expect // It tightly binds the interfaces and implementation without breaking go import cycles type sourceInterface interface { auth.PasswordAuthenticator auth_model.Config } var _ (sourceInterface) = &db.Source{}