blob: 459fccf91362b9b4f29daebafbac4ee33b3c8647 [file] [log] [blame]
Jiri Simsa756772c2015-03-25 15:40:54 -07001// Copyright 2015 The Vanadium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Bogdan Capritaa456f472014-12-10 10:18:03 -08005package device
Bogdan Caprita4d67c042014-08-19 10:41:19 -07006
7// Config is an RPC API to the config service.
8type Config interface {
9 // Set sets the value for key.
10 Set(key, value string) error
11}