/
arwos
/
casper
Обзор
Документация
Войти
/
arwos
/
casper
Код
Пакеты
0
Релизы
0
Аналитика
master
internal/plugins.go
20 строк
452 B
Mikhail Knyazhev
add OSCP+crt+crl (#2)
16 окт 2025, 03:44
16 окт 2025, 03:44
e66381c
Код
Авторство
О чём код?
/* * Copyright (c) 2025 Mikhail Knyazhev <markus621@yandex.com>. All rights reserved. * Use of this source code is governed by a GPL-3.0 license that can be found in the LICENSE file. */ package internal import ( "go.osspkg.com/goppy/v2/plugins" "go.arwos.org/casper/internal/api" "go.arwos.org/casper/internal/entity" "go.arwos.org/casper/internal/pkgs/certs" ) var Plugins = plugins.Inject( api.Plugin, entity.Plugin, certs.Plugin, )