Files
snapd/daemon/request.go
Ben Hoyt f5857085f6 daemon: add notices API
This is a port from Pebble into snapd of the notices API. The original
PR can be found at: https://github.com/canonical/pebble/pull/296

Signed-off-by: Oliver Calder <oliver.calder@canonical.com>
2023-12-06 16:09:03 -06:00

36 lines
1.0 KiB
Go

// Copyright (c) 2023 Canonical Ltd
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 3 as
// published by the Free Software Foundation.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package daemon
import (
"time"
)
// parseOptionalTime parses an RFC3339 time, or returns a zero time if s is empty.
func parseOptionalTime(s string) (time.Time, error) {
if s == "" {
return time.Time{}, nil
}
return time.Parse(time.RFC3339, s)
}
// parseOptionalDuration parses a duration, or returns 0 if s is empty.
func parseOptionalDuration(s string) (time.Duration, error) {
if s == "" {
return 0, nil
}
return time.ParseDuration(s)
}