blob: 8e4068814ecac6ae4de7a456c017a93fc9eb3542 [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Sensor Log configuration constants and default flag values.
package config
import (
"v.io/v23/naming"
)
const (
DefaultSbService = "syncbase"
AppName = "sensorlog_lite"
DBName = "sldb"
SyncPriority = 42
StreamDefTable = "strdef"
)
var AllTables = []string{StreamDefTable}
func SyncGroupName(publishService, devId string) string {
return naming.Join(publishService, "%%sync", "sllite", "dev", devId)
}