mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00:00
runtime configuration package --------- Signed-off-by: Danny Kopping <danny@coder.com> Co-authored-by: Danny Kopping <danny@coder.com>
11 lines
581 B
Go
11 lines
581 B
Go
// Package runtimeconfig contains logic for managing runtime configuration values
|
|
// stored in the database. Each coderd should have a Manager singleton instance
|
|
// that can create a Resolver for runtime configuration CRUD.
|
|
//
|
|
// TODO: Implement a caching layer for the Resolver so that we don't hit the
|
|
// database on every request. Configuration values are not expected to change
|
|
// frequently, so we should use pubsub to notify for updates.
|
|
// When implemented, the runtimeconfig will essentially be an in memory lookup
|
|
// with a database for persistence.
|
|
package runtimeconfig
|