mirror of
https://github.com/Ne0nd0g/merlin
synced 2026-06-08 11:59:20 +00:00
38 lines
1.0 KiB
Go
38 lines
1.0 KiB
Go
/*
|
|
Merlin is a post-exploitation command and control framework.
|
|
|
|
This file is part of Merlin.
|
|
Copyright (C) 2024 Russel Van Tuyl
|
|
|
|
Merlin is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
any later version.
|
|
|
|
Merlin is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with Merlin. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
// Package client provides a service for working with Merlin CLI clients
|
|
package client
|
|
|
|
import "github.com/Ne0nd0g/merlin/v2/pkg/client/message"
|
|
|
|
type Service struct {
|
|
messages message.Repository
|
|
}
|
|
|
|
var service *Service
|
|
|
|
func NewService() *Service {
|
|
if service == nil {
|
|
service = &Service{}
|
|
}
|
|
return service
|
|
}
|