Documentation
ΒΆ
Overview ΒΆ
package magistrala acts as an umbrella package containing multiple different microservices and defines all shared domain concepts. For detailed documentation of the platform, please visit https://magistrala.absmach.eu/docs/.
Index ΒΆ
Constants ΒΆ
This section is empty.
Variables ΒΆ
View Source
var ( // Version represents the last service git tag in git history. // It's meant to be set using go build ldflags: // -ldflags "-X 'github.com/absmach/magistrala.Version=0.0.0'". Version = "0.0.0" // Commit represents the service git commit hash. // It's meant to be set using go build ldflags: // -ldflags "-X 'github.com/absmach/magistrala.Commit=ffffffff'". Commit = "ffffffff" // BuildTime represetns the service build time. // It's meant to be set using go build ldflags: // -ldflags "-X 'github.com/absmach/magistrala.BuildTime=1970-01-01_00:00:00'". BuildTime = "1970-01-01_00:00:00" )
Functions ΒΆ
func Health ΒΆ
func Health(service, instanceID string) http.HandlerFunc
Health exposes an HTTP handler for retrieving service health.
Types ΒΆ
type HealthInfo ΒΆ
type HealthInfo struct {
// Status contains service status.
Status string `json:"status"`
// Version contains current service version.
Version string `json:"version"`
// Commit represents the git hash commit.
Commit string `json:"commit"`
// Description contains service description.
Description string `json:"description"`
// BuildTime contains service build time.
BuildTime string `json:"build_time"`
// InstanceID contains the ID of the current service instance
InstanceID string `json:"instance_id"`
}
HealthInfo contains version endpoint response.
type IDProvider ΒΆ
IDProvider specifies an API for generating unique identifiers.
Directories
ΒΆ
| Path | Synopsis |
|---|---|
|
Package alarms contains domain concept definitions needed to support Alarms service feature, i.e.
|
Package alarms contains domain concept definitions needed to support Alarms service feature, i.e. |
|
api
Package api contains API-related concerns: endpoint definitions, middlewares and all resource representations.
|
Package api contains API-related concerns: endpoint definitions, middlewares and all resource representations. |
|
middleware
Package middleware provides middleware for the alarms service.
|
Package middleware provides middleware for the alarms service. |
|
Package api contains commonly used constants and functions for the HTTP and gRPC API.
|
Package api contains commonly used constants and functions for the HTTP and gRPC API. |
|
http
Package api contains commonly used constants and functions for the HTTP API.
|
Package api contains commonly used constants and functions for the HTTP API. |
|
api
Package api contains implementation of Auth service HTTP API.
|
Package api contains implementation of Auth service HTTP API. |
|
api/grpc/auth
Package auth contains implementation of Auth service gRPC API.
|
Package auth contains implementation of Auth service gRPC API. |
|
api/grpc/token
Package grpc contains implementation of Auth service gRPC API.
|
Package grpc contains implementation of Auth service gRPC API. |
|
cache
Package cache contains the domain concept definitions needed to support Magistrala auth cache service functionality.
|
Package cache contains the domain concept definitions needed to support Magistrala auth cache service functionality. |
|
hasher
Package hasher contains the domain concept definitions needed to support Supermq users password hasher sub-service functionality.
|
Package hasher contains the domain concept definitions needed to support Supermq users password hasher sub-service functionality. |
|
middleware
Package middleware provides logging metrics and tracing middleware for Magistrala Auth service.
|
Package middleware provides logging metrics and tracing middleware for Magistrala Auth service. |
|
postgres
Package postgres contains Key repository implementations using PostgreSQL as the underlying database.
|
Package postgres contains Key repository implementations using PostgreSQL as the underlying database. |
|
Package bootstrap contains the domain concept definitions needed to support Magistrala bootstrap service functionality.
|
Package bootstrap contains the domain concept definitions needed to support Magistrala bootstrap service functionality. |
|
api
Package api contains implementation of bootstrap service HTTP API.
|
Package api contains implementation of bootstrap service HTTP API. |
|
events
Package events provides the domain concept definitions needed to support bootstrap events functionality.
|
Package events provides the domain concept definitions needed to support bootstrap events functionality. |
|
events/consumer
Package consumer contains events consumer for events published by Bootstrap service.
|
Package consumer contains events consumer for events published by Bootstrap service. |
|
events/producer
Package producer contains the domain events needed to support event sourcing of Bootstrap service actions.
|
Package producer contains the domain events needed to support event sourcing of Bootstrap service actions. |
|
postgres
Package postgres contains repository implementations using PostgreSQL as the underlying database.
|
Package postgres contains repository implementations using PostgreSQL as the underlying database. |
|
tracing
Package tracing provides tracing instrumentation for Magistrala Users service.
|
Package tracing provides tracing instrumentation for Magistrala Users service. |
|
pki
Package pki wraps OpenBao client for PKI operations
|
Package pki wraps OpenBao client for PKI operations |
|
api/grpc
Package grpc contains implementation of Auth service gRPC API.
|
Package grpc contains implementation of Auth service gRPC API. |
|
cache
Package cache contains the domain concept definitions needed to support Magistrala Channels cache service functionality.
|
Package cache contains the domain concept definitions needed to support Magistrala Channels cache service functionality. |
|
events
Package events provides the domain concept definitions needed to support clients events functionality.
|
Package events provides the domain concept definitions needed to support clients events functionality. |
|
middleware
Package middleware provides authorization, logging, metrics and tracing middleware for Magistrala Channels Service.
|
Package middleware provides authorization, logging, metrics and tracing middleware for Magistrala Channels Service. |
|
Package cli contains the domain concept definitions needed to support Magistrala CLI functionality.
|
Package cli contains the domain concept definitions needed to support Magistrala CLI functionality. |
|
api
Package api contains API-related concerns: endpoint definitions, middlewares and all resource representations.
|
Package api contains API-related concerns: endpoint definitions, middlewares and all resource representations. |
|
api/grpc
Package grpc contains implementation of Auth service gRPC API.
|
Package grpc contains implementation of Auth service gRPC API. |
|
cache
Package cache contains the domain concept definitions needed to support Magistrala clients cache service functionality.
|
Package cache contains the domain concept definitions needed to support Magistrala clients cache service functionality. |
|
events
Package events provides the domain concept definitions needed to support clients events functionality.
|
Package events provides the domain concept definitions needed to support clients events functionality. |
|
middleware
Package middleware provides authorization, logging, metrics and tracing middleware for Magistrala Clients Service.
|
Package middleware provides authorization, logging, metrics and tracing middleware for Magistrala Clients Service. |
|
mocks
Package mocks contains mocks for testing purposes.
|
Package mocks contains mocks for testing purposes. |
|
postgres
Package postgres contains the database implementation of clients repository layer.
|
Package postgres contains the database implementation of clients repository layer. |
|
private
Private package is a service wrapper around the underlying Repository.
|
Private package is a service wrapper around the underlying Repository. |
|
standalone
Package standalone contains implementation for auth service in single-user scenario.
|
Package standalone contains implementation for auth service in single-user scenario. |
|
cmd
|
|
|
alarms
command
|
|
|
auth
command
|
|
|
bootstrap
command
Package main contains bootstrap main function to start the bootstrap service.
|
Package main contains bootstrap main function to start the bootstrap service. |
|
certs
command
|
|
|
channels
command
Package main contains clients main function to start the clients service.
|
Package main contains clients main function to start the clients service. |
|
cli
command
Package main contains cli main function to run the cli.
|
Package main contains cli main function to run the cli. |
|
clients
command
Package main contains clients main function to start the clients service.
|
Package main contains clients main function to start the clients service. |
|
domains
command
|
|
|
fluxmq
command
Package main contains the FluxMQ auth bridge service entry point.
|
Package main contains the FluxMQ auth bridge service entry point. |
|
groups
command
Package main contains groups main function to start the groups service.
|
Package main contains groups main function to start the groups service. |
|
journal
command
Package main contains journal main function to start the journal service.
|
Package main contains journal main function to start the journal service. |
|
notifications
command
Package main contains notifications main function to start the notifications service.
|
Package main contains notifications main function to start the notifications service. |
|
postgres-reader
command
Package main contains postgres-reader main function to start the postgres-reader service.
|
Package main contains postgres-reader main function to start the postgres-reader service. |
|
postgres-writer
command
Package main contains postgres-writer main function to start the postgres-writer service.
|
Package main contains postgres-writer main function to start the postgres-writer service. |
|
provision
command
Package main contains provision main function to start the provision service.
|
Package main contains provision main function to start the provision service. |
|
re
command
Package main contains rule engine main function to start the service.
|
Package main contains rule engine main function to start the service. |
|
reports
command
Package main contains reports main function to start the service.
|
Package main contains reports main function to start the service. |
|
timescale-reader
command
Package main contains timescale-reader main function to start the timescale-reader service.
|
Package main contains timescale-reader main function to start the timescale-reader service. |
|
timescale-writer
command
Package main contains timescale-writer main function to start the timescale-writer service.
|
Package main contains timescale-writer main function to start the timescale-writer service. |
|
users
command
Package main contains users main function to start the users service.
|
Package main contains users main function to start the users service. |
|
Package consumers contain the domain concept definitions needed to support Magistrala consumer services functionality.
|
Package consumers contain the domain concept definitions needed to support Magistrala consumer services functionality. |
|
notifiers
Package notifiers contain the domain concept definitions needed to support Magistrala notifications functionality.
|
Package notifiers contain the domain concept definitions needed to support Magistrala notifications functionality. |
|
notifiers/api
Package api contains API-related concerns: endpoint definitions, middlewares and all resource representations.
|
Package api contains API-related concerns: endpoint definitions, middlewares and all resource representations. |
|
notifiers/postgres
Package postgres contains repository implementations using PostgreSQL as the underlying database.
|
Package postgres contains repository implementations using PostgreSQL as the underlying database. |
|
notifiers/smpp
Package smpp contains the domain concept definitions needed to support Magistrala SMS notifications.
|
Package smpp contains the domain concept definitions needed to support Magistrala SMS notifications. |
|
notifiers/tracing
Package tracing provides tracing instrumentation for Magistrala WebSocket adapter service.
|
Package tracing provides tracing instrumentation for Magistrala WebSocket adapter service. |
|
writers
Package writers contain the domain concept definitions needed to support Magistrala writer services functionality.
|
Package writers contain the domain concept definitions needed to support Magistrala writer services functionality. |
|
writers/api
Package api contains API-related concerns: endpoint definitions, middlewares and all resource representations.
|
Package api contains API-related concerns: endpoint definitions, middlewares and all resource representations. |
|
writers/postgres
Package postgres contains repository implementations using Postgres as the underlying database.
|
Package postgres contains repository implementations using Postgres as the underlying database. |
|
writers/timescale
Package timescale contains repository implementations using Timescale as the underlying database.
|
Package timescale contains repository implementations using Timescale as the underlying database. |
|
api/grpc
Package grpc contains implementation of Domains service gRPC API.
|
Package grpc contains implementation of Domains service gRPC API. |
|
cache
Package cache contains the domain concept definitions needed to support Magistrala Domains cache service functionality.
|
Package cache contains the domain concept definitions needed to support Magistrala Domains cache service functionality. |
|
events
Package events provides the domain concept definitions needed to support Magistrala auth service functionality.
|
Package events provides the domain concept definitions needed to support Magistrala auth service functionality. |
|
middleware
Package middleware provides authorization, logging, metrics and tracing middleware for Magistrala Domains service.
|
Package middleware provides authorization, logging, metrics and tracing middleware for Magistrala Domains service. |
|
postgres
Package postgres contains Key repository implementations using PostgreSQL as the underlying database.
|
Package postgres contains Key repository implementations using PostgreSQL as the underlying database. |
|
fluxmq
|
|
|
api/grpc
Package grpc contains the FluxMQ auth callout gRPC server implementation.
|
Package grpc contains the FluxMQ auth callout gRPC server implementation. |
|
Package groups contains the domain concept definitions needed to support Magistrala groups functionality.
|
Package groups contains the domain concept definitions needed to support Magistrala groups functionality. |
|
api/grpc
Package grpc contains implementation of Auth service gRPC API.
|
Package grpc contains implementation of Auth service gRPC API. |
|
api/http
Package api contains API-related concerns: endpoint definitions, middlewares and all resource representations.
|
Package api contains API-related concerns: endpoint definitions, middlewares and all resource representations. |
|
events
Package events contains event source Redis client implementation.
|
Package events contains event source Redis client implementation. |
|
middleware
Package middleware provides authorization, logging, metrics and tracing middleware for Magistrala Domains service.
|
Package middleware provides authorization, logging, metrics and tracing middleware for Magistrala Domains service. |
|
mocks
Package mocks contains mocks for testing purposes.
|
Package mocks contains mocks for testing purposes. |
|
postgres
Package postgres contains the database implementation of groups repository layer.
|
Package postgres contains the database implementation of groups repository layer. |
|
internal
|
|
|
clients
Package clients contains the domain concept definitions needed to support Magistrala clients functionality for example: postgres, redis, grpc, jaeger.
|
Package clients contains the domain concept definitions needed to support Magistrala clients functionality for example: postgres, redis, grpc, jaeger. |
|
clients/redis
Package redis contains the domain concept definitions needed to support Magistrala redis cache functionality.
|
Package redis contains the domain concept definitions needed to support Magistrala redis cache functionality. |
|
email
Package email contains the domain concept definitions needed to support Magistrala email functionality.
|
Package email contains the domain concept definitions needed to support Magistrala email functionality. |
|
nullable
Package nullable contains nullable types used to handle scenarios where default values can't be used to indicate empty, and we want to avoid using pointers for that.
|
Package nullable contains nullable types used to handle scenarios where default values can't be used to indicate empty, and we want to avoid using pointers for that. |
|
Package journal contains the journal service.
|
Package journal contains the journal service. |
|
api
Package api contains API-related concerns: endpoint definitions, middlewares and all resource representations.
|
Package api contains API-related concerns: endpoint definitions, middlewares and all resource representations. |
|
events
Package events provides the event consumer for the journal service.
|
Package events provides the event consumer for the journal service. |
|
middleware
Package middleware provides tracing, logging and metrics middleware for Magistrala Journal service.
|
Package middleware provides tracing, logging and metrics middleware for Magistrala Journal service. |
|
mocks
Package mocks contains mocks for testing purposes.
|
Package mocks contains mocks for testing purposes. |
|
postgres
Package postgres provides a postgres implementation of the journal log repository.
|
Package postgres provides a postgres implementation of the journal log repository. |
|
Package logger contains logger API definition, wrapper that can be used around any other logger.
|
Package logger contains logger API definition, wrapper that can be used around any other logger. |
|
Package notifications provides the domain model for the notifications service.
|
Package notifications provides the domain model for the notifications service. |
|
emailer
Package emailer provides email notification implementation for the notifications service.
|
Package emailer provides email notification implementation for the notifications service. |
|
events
Package events provides event handling for the notifications service.
|
Package events provides event handling for the notifications service. |
|
middleware
Package middleware provides middleware for the notifications service.
|
Package middleware provides middleware for the notifications service. |
|
mocks
Package mocks provides mocks for the notifications service.
|
Package mocks provides mocks for the notifications service. |
|
Package pkg contains library packages used by Magistrala services and external services that integrate with Magistrala.
|
Package pkg contains library packages used by Magistrala services and external services that integrate with Magistrala. |
|
channels/events
Package events provides the events sourcing of channels to provide replication in other service and definitions needed to support it
|
Package events provides the events sourcing of channels to provide replication in other service and definitions needed to support it |
|
channels/events/consumer
Package consumer contains events consumer for events published by channels service.
|
Package consumer contains events consumer for events published by channels service. |
|
clients/events
Package events provides the events sourcing of clients to provide replication in other service and definitions needed to support it
|
Package events provides the events sourcing of clients to provide replication in other service and definitions needed to support it |
|
clients/events/consumer
Package consumer contains events consumer for events published by clients service.
|
Package consumer contains events consumer for events published by clients service. |
|
errors
Package errors contains Magistrala errors definitions.
|
Package errors contains Magistrala errors definitions. |
|
events/nats
Package redis contains the domain concept definitions needed to support Magistrala redis events source service functionality.
|
Package redis contains the domain concept definitions needed to support Magistrala redis events source service functionality. |
|
events/redis
Package redis contains the domain concept definitions needed to support Magistrala redis events source service functionality.
|
Package redis contains the domain concept definitions needed to support Magistrala redis events source service functionality. |
|
groups/events
Package events provides the events sourcing of groups to provide listing in clients and channels concept definitions needed to support
|
Package events provides the events sourcing of groups to provide listing in clients and channels concept definitions needed to support |
|
groups/events/consumer
Package consumer contains events consumer for events published by Bootstrap service.
|
Package consumer contains events consumer for events published by Bootstrap service. |
|
grpcclient
Package auth contains the domain concept definitions needed to support Magistrala auth functionality.
|
Package auth contains the domain concept definitions needed to support Magistrala auth functionality. |
|
jaeger
Package jaeger contains the domain concept definitions needed to support Magistrala Jaeger tracing functionality.
|
Package jaeger contains the domain concept definitions needed to support Magistrala Jaeger tracing functionality. |
|
messaging/mqtt
Package mqtt hold the implementation of the Publisher and PubSub interfaces for the MQTT messaging system, the internal messaging broker of the Magistrala IoT platform.
|
Package mqtt hold the implementation of the Publisher and PubSub interfaces for the MQTT messaging system, the internal messaging broker of the Magistrala IoT platform. |
|
messaging/nats
Package nats hold the implementation of the Publisher and PubSub interfaces for the NATS messaging system, the internal messaging broker of the Magistrala IoT platform.
|
Package nats hold the implementation of the Publisher and PubSub interfaces for the NATS messaging system, the internal messaging broker of the Magistrala IoT platform. |
|
messaging/nats/tracing
Package tracing provides tracing instrumentation for Magistrala clients policies service.
|
Package tracing provides tracing instrumentation for Magistrala clients policies service. |
|
messaging/tracing
Package tracing provides tracing instrumentation for Magistrala clients policies service.
|
Package tracing provides tracing instrumentation for Magistrala clients policies service. |
|
oauth2
Package oauth2 contains the domain concept definitions needed to support Magistrala ui service OAuth2 functionality.
|
Package oauth2 contains the domain concept definitions needed to support Magistrala ui service OAuth2 functionality. |
|
oauth2/google
Package google contains the domain concept definitions needed to support Magistrala services for Google OAuth2 functionality.
|
Package google contains the domain concept definitions needed to support Magistrala services for Google OAuth2 functionality. |
|
policies
Package policies contains Magistrala policy definitions.
|
Package policies contains Magistrala policy definitions. |
|
policies/spicedb
Package server contains the HTTP, gRPC and CoAP server implementation.
|
Package server contains the HTTP, gRPC and CoAP server implementation. |
|
postgres
Package postgres contains the domain concept definitions needed to support Magistrala PostgreSQL database functionality.
|
Package postgres contains the domain concept definitions needed to support Magistrala PostgreSQL database functionality. |
|
prometheus
Package prometheus provides a framework for defining and collecting metrics for prometheus.
|
Package prometheus provides a framework for defining and collecting metrics for prometheus. |
|
re/events/consumer
Package consumer contains events consumer for events published by the Rules Engine service.
|
Package consumer contains events consumer for events published by the Rules Engine service. |
|
roles/rolemanager/events
Package events provides the domain concept definitions needed to support Magistrala auth service functionality.
|
Package events provides the domain concept definitions needed to support Magistrala auth service functionality. |
|
roles/rolemanager/middleware
Package middleware provides authorization, logging, metrics and tracing middleware for Magistrala RoleManager service.
|
Package middleware provides authorization, logging, metrics and tracing middleware for Magistrala RoleManager service. |
|
sdk
Package sdk contains Magistrala SDK.
|
Package sdk contains Magistrala SDK. |
|
server
Package server contains the HTTP, gRPC and CoAP server implementation.
|
Package server contains the HTTP, gRPC and CoAP server implementation. |
|
server/coap
Package coap contains the CoAP server implementation.
|
Package coap contains the CoAP server implementation. |
|
server/grpc
Package grpc contains the gRPC server implementation.
|
Package grpc contains the gRPC server implementation. |
|
server/http
Package http contains the HTTP server implementation.
|
Package http contains the HTTP server implementation. |
|
sid
Package ulid contains ULID generator.
|
Package ulid contains ULID generator. |
|
transformers
Package transformers contains the domain concept definitions needed to support Magistrala transformer services functionality.
|
Package transformers contains the domain concept definitions needed to support Magistrala transformer services functionality. |
|
transformers/json
Package json contains JSON transformer.
|
Package json contains JSON transformer. |
|
transformers/senml
Package senml contains SenML transformer.
|
Package senml contains SenML transformer. |
|
ulid
Package ulid contains ULID generator.
|
Package ulid contains ULID generator. |
|
uuid
Package uuid contains UUID generator.
|
Package uuid contains UUID generator. |
|
Package provision contains domain concept definitions needed to support Provision service feature, i.e.
|
Package provision contains domain concept definitions needed to support Provision service feature, i.e. |
|
api
Package api contains API-related concerns: endpoint definitions, middlewares and all resource representations.
|
Package api contains API-related concerns: endpoint definitions, middlewares and all resource representations. |
|
Package re contain the domain concept definitions needed to support Magistrala Rule Egine services functionality.
|
Package re contain the domain concept definitions needed to support Magistrala Rule Egine services functionality. |
|
api
Package api contains API-related concerns: endpoint definitions, middlewares and all resource representations.
|
Package api contains API-related concerns: endpoint definitions, middlewares and all resource representations. |
|
events
Package events provides the domain concept definitions needed to support clients events functionality.
|
Package events provides the domain concept definitions needed to support clients events functionality. |
|
Package readers provides a set of readers for various formats.
|
Package readers provides a set of readers for various formats. |
|
api
Package api contains API-related concerns: endpoint definitions, middlewares and all resource representations.
|
Package api contains API-related concerns: endpoint definitions, middlewares and all resource representations. |
|
api/grpc
Package grpc contains implementation of Readers service gRPC API.
|
Package grpc contains implementation of Readers service gRPC API. |
|
middleware
Package middleware provides middleware for Magistrala Readers service.
|
Package middleware provides middleware for Magistrala Readers service. |
|
postgres
Package postgres contains repository implementations using Postgres as the underlying database.
|
Package postgres contains repository implementations using Postgres as the underlying database. |
|
timescale
Package timescale contains repository implementations using Timescale as the underlying database.
|
Package timescale contains repository implementations using Timescale as the underlying database. |
|
api
Package api contains API-related concerns: endpoint definitions, middlewares and all resource representations.
|
Package api contains API-related concerns: endpoint definitions, middlewares and all resource representations. |
|
events
Package events provides the domain concept definitions needed to support reports events functionality.
|
Package events provides the domain concept definitions needed to support reports events functionality. |
|
Package tools contains tools for Magistrala.
|
Package tools contains tools for Magistrala. |
|
e2e
Package e2e contains entry point for end-to-end tests.
|
Package e2e contains entry point for end-to-end tests. |
|
e2e/cmd
command
Package main contains e2e tool for testing Magistrala.
|
Package main contains e2e tool for testing Magistrala. |
|
mqtt-bench
Package bench contains benchmarking tool for MQTT broker.
|
Package bench contains benchmarking tool for MQTT broker. |
|
mqtt-bench/cmd
command
Package main contains the entry point of the mqtt-bench tool.
|
Package main contains the entry point of the mqtt-bench tool. |
|
provision
Package provision is a simple utility to create a list of channels and clients connected to these channels with possibility to create certificates for mTLS use case.
|
Package provision is a simple utility to create a list of channels and clients connected to these channels with possibility to create certificates for mTLS use case. |
|
provision/cmd
command
Package main contains entry point for provisioning tool.
|
Package main contains entry point for provisioning tool. |
|
Package users contains the domain concept definitions needed to support Magistrala users service functionality.
|
Package users contains the domain concept definitions needed to support Magistrala users service functionality. |
|
api
Package api contains API-related concerns: endpoint definitions, middlewares and all resource representations.
|
Package api contains API-related concerns: endpoint definitions, middlewares and all resource representations. |
|
api/grpc
Package grpc contains implementation of Users service gRPC API.
|
Package grpc contains implementation of Users service gRPC API. |
|
emailer
Package emailer contains the domain concept definitions needed to support Magistrala users email service functionality.
|
Package emailer contains the domain concept definitions needed to support Magistrala users email service functionality. |
|
events
Package events provides the domain concept definitions needed to support Magistrala users service functionality.
|
Package events provides the domain concept definitions needed to support Magistrala users service functionality. |
|
hasher
Package hasher contains the domain concept definitions needed to support Magistrala users password hasher sub-service functionality.
|
Package hasher contains the domain concept definitions needed to support Magistrala users password hasher sub-service functionality. |
|
middleware
Package middleware provides authorization, logging, metrics and tracing middleware for Magistrala Users Service.
|
Package middleware provides authorization, logging, metrics and tracing middleware for Magistrala Users Service. |
|
mocks
Package mocks contains mocks for testing purposes.
|
Package mocks contains mocks for testing purposes. |
|
postgres
Package postgres contains the database implementation of users repository layer.
|
Package postgres contains the database implementation of users repository layer. |
Click to show internal directories.
Click to hide internal directories.