wip getModem

This commit is contained in:
2025-06-30 16:25:20 +02:00
parent 1fcf748310
commit 532d96a9be
7 changed files with 100 additions and 1 deletions

View File

@ -395,4 +395,9 @@ func (o *Operations) SetModem(ctx context.Context, funcs ...protocol.SetModemOpt
return protocol.ErrUnimplemented
}
// Deprecated : is no longer maintained for modules in V1
func (o *Operations) GetModemConfiguration(ctx context.Context, funcs ...protocol.SetModemOptionsFunc) (*model.ModemAuthentication, error) {
return nil, protocol.ErrUnimplemented
}
var _ protocol.Operations = &Operations{}