Create time module stub

This commit is contained in:
2023-05-15 16:42:55 +01:00
parent 95cf84728d
commit 81f5c6aaa0
3 changed files with 44 additions and 0 deletions

15
components/time/time.c Normal file
View File

@@ -0,0 +1,15 @@
/*
* SPDX-License-Identifier: AGPL-3.0-only
* Copyright (c) Camden Dixie O'Brien
*/
#include "time.h"
void time_init(void)
{
}
Time time_get(void)
{
return (Time){ .hour = 13, .minute = 37 };
}