6 lines
117 B
JavaScript
6 lines
117 B
JavaScript
|
'use strict';
|
||
|
|
||
|
angular.module('app').controller("MainCtrl", function($scope, $http) {
|
||
|
$scope.user = "soemthing"
|
||
|
});
|