Jobs & Workflows
https://armen.surge.sh
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
803 B
27 lines
803 B
/* |
|
------------------------------------------------------------------------------------------------------------------------ |
|
####### model ####### Copyright (c) 2021 mls-361 ################################################### MIT License ####### |
|
------------------------------------------------------------------------------------------------------------------------ |
|
*/ |
|
|
|
package model |
|
|
|
import ( |
|
"forge.chapril.org/armen/model" |
|
|
|
"forge.chapril.org/armen/armen/internal/components" |
|
) |
|
|
|
// Build AFAIRE. |
|
func Build(ccs *components.Components) (components.Model, error) { |
|
config := &model.Config{ |
|
Logger: ccs.Logger, |
|
Storage: ccs.Storage, |
|
} |
|
|
|
return model.New(config) |
|
} |
|
|
|
/* |
|
######################################################################################################## @(°_°)@ ####### |
|
*/
|
|
|