diff options
| author | mhsanaei <ho3ein.sanaei@gmail.com> | 2025-09-20 10:35:50 +0300 |
|---|---|---|
| committer | mhsanaei <ho3ein.sanaei@gmail.com> | 2025-09-20 10:35:50 +0300 |
| commit | 6ced549deaecb42b9bb93ea9efcb4c1bbaabe8a4 (patch) | |
| tree | 28d8d82530476cf607e4d05ca189ae05868711e6 /web/service/outbound.go | |
| parent | f60682a6b7cb749fee403c84e2587c3ad7e7ced0 (diff) | |
docs: add comments for all functions
Diffstat (limited to 'web/service/outbound.go')
| -rw-r--r-- | web/service/outbound.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/web/service/outbound.go b/web/service/outbound.go index 94a8f0b3..530d12eb 100644 --- a/web/service/outbound.go +++ b/web/service/outbound.go @@ -9,6 +9,8 @@ import ( "gorm.io/gorm" ) +// OutboundService provides business logic for managing Xray outbound configurations. +// It handles outbound traffic monitoring and statistics. type OutboundService struct{} func (s *OutboundService) AddTraffic(traffics []*xray.Traffic, clientTraffics []*xray.ClientTraffic) (error, bool) { |
