From 79a22e3bc1ee941397c94511822c95eab9c5214e Mon Sep 17 00:00:00 2001 From: Chewing_Bever Date: Wed, 22 Jun 2022 09:12:59 +0200 Subject: [PATCH] refactor: renamed module to conf --- vconf.v => conf.v | 2 +- v.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename vconf.v => conf.v (99%) diff --git a/vconf.v b/conf.v similarity index 99% rename from vconf.v rename to conf.v index b1af613..9da2003 100644 --- a/vconf.v +++ b/conf.v @@ -1,4 +1,4 @@ -module vconf +module conf import os import toml diff --git a/v.mod b/v.mod index 7a44ed0..40e2a4c 100644 --- a/v.mod +++ b/v.mod @@ -1,5 +1,5 @@ Module { - name: 'vconf' + name: 'conf' description: 'A small library for reading configuration from a TOML file & environment variables' version: '0.0.0' license: 'MIT'